public enum SpecialAttr extends Enum<SpecialAttr>
| Enum Constant and Description |
|---|
ENTITLEMENTS |
NULL |
RESOURCES |
ROLES |
| Modifier and Type | Method and Description |
|---|---|
static SpecialAttr |
fromString(String value) |
String |
toString() |
static SpecialAttr |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpecialAttr[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpecialAttr NULL
public static final SpecialAttr RESOURCES
public static final SpecialAttr ROLES
public static final SpecialAttr ENTITLEMENTS
public static SpecialAttr[] values()
for (SpecialAttr c : SpecialAttr.values()) System.out.println(c);
public static SpecialAttr valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static SpecialAttr fromString(String value)
public String toString()
toString in class Enum<SpecialAttr>Copyright © 2010–2018 The Apache Software Foundation. All rights reserved.