Package com.iizix.event
Enum KStringEvent.Operation
- java.lang.Object
- java.lang.Enum<KStringEvent.Operation>
- com.iizix.event.KStringEvent.Operation
 
 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<KStringEvent.Operation>
 - Enclosing class:
- KStringEvent
 - public static enum KStringEvent.Operation extends java.lang.Enum<KStringEvent.Operation> The operation enum. Operations can be combined.
- Enum Constant Summary- Enum Constants - Enum Constant - Description - FORCE_RESOLVE_REFERENCESResolves references in a forced way.- RESOLVE_REFERENCESResolves the references.
 - Field Summary- Fields - Modifier and Type - Field - Description - int- valueThe operation value: bitwise mask number used to merge several operations.
 - Method Summary- All Methods Static Methods Concrete Methods - Modifier and Type - Method - Description - static KStringEvent.Operation- valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.- static KStringEvent.Operation[]- values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- Enum Constant Detail- RESOLVE_REFERENCES- public static final KStringEvent.Operation RESOLVE_REFERENCES Resolves the references.
 - FORCE_RESOLVE_REFERENCES- public static final KStringEvent.Operation FORCE_RESOLVE_REFERENCES Resolves references in a forced way.
 
 - Method Detail- values- public static KStringEvent.Operation[] 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 (KStringEvent.Operation c : KStringEvent.Operation.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - valueOf- public static KStringEvent.Operation 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