Enum SessionUpdateTask.CrossDCMessageStatus
- java.lang.Object
- 
- java.lang.Enum<SessionUpdateTask.CrossDCMessageStatus>
- 
- org.keycloak.models.sessions.infinispan.changes.SessionUpdateTask.CrossDCMessageStatus
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<SessionUpdateTask.CrossDCMessageStatus>
 - Enclosing interface:
- SessionUpdateTask<S extends SessionEntity>
 
 public static enum SessionUpdateTask.CrossDCMessageStatus extends Enum<SessionUpdateTask.CrossDCMessageStatus> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description NOT_NEEDEDSYNC
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static SessionUpdateTask.CrossDCMessageStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static SessionUpdateTask.CrossDCMessageStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
SYNCpublic static final SessionUpdateTask.CrossDCMessageStatus SYNC 
 - 
NOT_NEEDEDpublic static final SessionUpdateTask.CrossDCMessageStatus NOT_NEEDED 
 
- 
 - 
Method Detail- 
valuespublic static SessionUpdateTask.CrossDCMessageStatus[] 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 (SessionUpdateTask.CrossDCMessageStatus c : SessionUpdateTask.CrossDCMessageStatus.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SessionUpdateTask.CrossDCMessageStatus valueOf(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:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-