Enum CDORemoteSessionMessage.Priority
- java.lang.Object
- 
- java.lang.Enum<CDORemoteSessionMessage.Priority>
- 
- org.eclipse.emf.cdo.session.remote.CDORemoteSessionMessage.Priority
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<CDORemoteSessionMessage.Priority>
 - Enclosing class:
- CDORemoteSessionMessage
 
 public static enum CDORemoteSessionMessage.Priority extends java.lang.Enum<CDORemoteSessionMessage.Priority> Enumerates the possibleremote session messagepriorities.- Author:
- Eike Stepper
 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static CDORemoteSessionMessage.PriorityvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CDORemoteSessionMessage.Priority[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
VERY_LOWpublic static final CDORemoteSessionMessage.Priority VERY_LOW 
 - 
LOWpublic static final CDORemoteSessionMessage.Priority LOW 
 - 
NORMALpublic static final CDORemoteSessionMessage.Priority NORMAL 
 - 
HIGHpublic static final CDORemoteSessionMessage.Priority HIGH 
 - 
VERY_HIGHpublic static final CDORemoteSessionMessage.Priority VERY_HIGH 
 
- 
 - 
Method Detail- 
valuespublic static CDORemoteSessionMessage.Priority[] 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 (CDORemoteSessionMessage.Priority c : CDORemoteSessionMessage.Priority.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CDORemoteSessionMessage.Priority 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
 
 
- 
 
-