Enum CDOPermission
- java.lang.Object
- 
- java.lang.Enum<CDOPermission>
- 
- org.eclipse.emf.cdo.common.security.CDOPermission
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<CDOPermission>
 
 public enum CDOPermission extends java.lang.Enum<CDOPermission> Describes the possible protection levels a protectable object may have.- Since:
- 4.1
- Author:
- Eike Stepper
 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CDOPermissionget(int bits)bytegetBits()booleanisReadable()booleanisWritable()static CDOPermissionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CDOPermission[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NONEpublic static final CDOPermission NONE 
 - 
READpublic static final CDOPermission READ 
 - 
WRITEpublic static final CDOPermission WRITE 
 
- 
 - 
Method Detail- 
valuespublic static CDOPermission[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CDOPermission c : CDOPermission.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CDOPermission valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
getBitspublic byte getBits() 
 - 
isReadablepublic boolean isReadable() - Since:
- 4.1
 
 - 
isWritablepublic boolean isWritable() - Since:
- 4.1
 
 - 
getpublic static CDOPermission get(int bits) 
 
- 
 
-