public static enum SecurityRule.ComparisonType extends java.lang.Enum<SecurityRule.ComparisonType>
| Enum Constant and Description |
|---|
ALL
Compare method where all attribute authorization allows access
|
ANY
Compare method where any attribute authorization allows access
|
MAJORITY
Compare method where majority attribute authorization allows access
|
| Modifier and Type | Method and Description |
|---|---|
static SecurityRule.ComparisonType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SecurityRule.ComparisonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityRule.ComparisonType ANY
public static final SecurityRule.ComparisonType ALL
public static final SecurityRule.ComparisonType MAJORITY
public static SecurityRule.ComparisonType[] values()
for (SecurityRule.ComparisonType c : SecurityRule.ComparisonType.values()) System.out.println(c);
public static SecurityRule.ComparisonType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null