Enum OrderingSemantics
- All Implemented Interfaces:
Serializable
,Comparable<OrderingSemantics>
,java.lang.constant.Constable
This enum lists ordering semantics.
- Author:
- Lars Bengel
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final OrderingSemantics
CONFLICTFREE_SEMANTICSstatic final OrderingSemantics
CONFLICTFREE_SEMANTICSstatic final OrderingSemantics
CONFLICTFREE_SEMANTICSstatic final OrderingSemantics
CONFLICTFREE_SEMANTICS -
Method Summary
Modifier and TypeMethodDescriptionReturns the abbreviation of the ordering semantics.Returns the description of the ordering semantics.static OrderingSemantics
Returns the enum constant of this type with the specified name.static OrderingSemantics[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
CF
CF -
AD
AD -
ST
ST -
DN
DN
-
-
Field Details
-
CONFLICTFREE_SEMANTICS
CONFLICTFREE_SEMANTICS -
ADMISSIBLE_SEMANTICS
CONFLICTFREE_SEMANTICS -
STABLE_SEMANTICS
CONFLICTFREE_SEMANTICS -
DEFENDED_NOT_IN_SEMANTICS
CONFLICTFREE_SEMANTICS
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException
- if the argument is null
-
description
Returns the description of the ordering semantics.- Returns:
- the description of the ordering semantics.
-
abbreviation
Returns the abbreviation of the ordering semantics.- Returns:
- the abbreviation of the ordering semantics.
-