|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AttributeAccessType>
com.semarchy.mdm.runtime.model.logical.AttributeAccessType
public enum AttributeAccessType
AttributeAccessType enumeration:
Access Types that can be granted for an IEntityAttribute
Enum Constant Summary | |
---|---|
DENIED
Denied: Access to attribute is denied (attribute won't be visible) |
|
READ
Read Only: Attribute can be read but not modified |
|
READ_WRITE
Read Write: Attribute can be read and can be modified |
Method Summary | |
---|---|
static AttributeAccessType |
maxPriv(AttributeAccessType pAccessType1,
AttributeAccessType pAccessType2)
Return the most privileged access type |
static AttributeAccessType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AttributeAccessType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AttributeAccessType DENIED
public static final AttributeAccessType READ
public static final AttributeAccessType READ_WRITE
Method Detail |
---|
public static AttributeAccessType[] values()
for (AttributeAccessType c : AttributeAccessType.values()) System.out.println(c);
public static AttributeAccessType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static AttributeAccessType maxPriv(AttributeAccessType pAccessType1, AttributeAccessType pAccessType2)
pAccessType1
- pAccessType2
-
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |