public static enum MetaObjectProfiSCT.Rights extends java.lang.Enum<MetaObjectProfiSCT.Rights>
Enum Constant and Description |
---|
EMPTY
No right set
|
RF
RF right
|
RM
RM right
|
Modifier and Type | Method and Description |
---|---|
static MetaObjectProfiSCT.Rights |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MetaObjectProfiSCT.Rights |
valueOfWithEmpty(java.lang.String string)
Convert the given string to Rights enum value.
|
static MetaObjectProfiSCT.Rights[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetaObjectProfiSCT.Rights EMPTY
public static final MetaObjectProfiSCT.Rights RM
public static final MetaObjectProfiSCT.Rights RF
public static MetaObjectProfiSCT.Rights[] values()
for (MetaObjectProfiSCT.Rights c : MetaObjectProfiSCT.Rights.values()) System.out.println(c);
public static MetaObjectProfiSCT.Rights 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 static MetaObjectProfiSCT.Rights valueOfWithEmpty(java.lang.String string)
valueOf(java.lang.String)
except for the fact
that null or empty string is converted to EMPTY
.string
- the string to convert