public static ProtectionContext fromName()

in src/main/java/org/apache/sling/xss/ProtectionContext.java [64:72]


    public static ProtectionContext fromName(String name) {
        ProtectionContext[] values = values();
        for (ProtectionContext contextToCheck : values) {
            if (contextToCheck.getName().equals(name)) {
                return contextToCheck;
            }
        }
        return null;
    }