public static enum Portal.Access extends java.lang.Enum<Portal.Access>
Modifier and Type | Method and Description |
---|---|
static Portal.Access |
get(java.lang.String a) |
java.lang.String |
getValue() |
static Portal.Access |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Portal.Access[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Portal.Access NOT_SET
public static final Portal.Access PUBLIC
public static final Portal.Access PRIVATE
public static Portal.Access[] values()
for (Portal.Access c : Portal.Access.values()) System.out.println(c);
public static Portal.Access 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 nullpublic java.lang.String getValue()
public static Portal.Access get(java.lang.String a)