Enum Class GuiMarkerSide
- All Implemented Interfaces:
Serializable, Comparable<GuiMarkerSide>, Constable
Selects which direction determines the inline side used by an outside marker.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionUses the list item's parent direction, aligning sibling marker columns.Uses the list item's own direction. -
Method Summary
Modifier and TypeMethodDescriptionstatic GuiMarkerSideReturns the enum constant of this class with the specified name.static GuiMarkerSide[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MATCH_SELF
Uses the list item's own direction. -
MATCH_PARENT
Uses the list item's parent direction, aligning sibling marker columns.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-