Enum PrioritizableHighlightPainter.ZLayer
- java.lang.Object
-
- java.lang.Enum<PrioritizableHighlightPainter.ZLayer>
-
- ro.sync.ecss.extensions.api.highlights.PrioritizableHighlightPainter.ZLayer
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PrioritizableHighlightPainter.ZLayer>
- Enclosing interface:
- PrioritizableHighlightPainter
public static enum PrioritizableHighlightPainter.ZLayer extends java.lang.Enum<PrioritizableHighlightPainter.ZLayer>
Layers where a painter can paint its highlights.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASE_LAYER
The lowest of the possible 3 layers where the highlights can be painted.MIDDLE_LAYER
The middle layer of the possible 3 layers where the highlights can be painted.TOP_LAYER
The highest of the possible 3 layers where the highlights can be painted.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PrioritizableHighlightPainter.ZLayer
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PrioritizableHighlightPainter.ZLayer[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASE_LAYER
public static final PrioritizableHighlightPainter.ZLayer BASE_LAYER
The lowest of the possible 3 layers where the highlights can be painted.
-
MIDDLE_LAYER
public static final PrioritizableHighlightPainter.ZLayer MIDDLE_LAYER
The middle layer of the possible 3 layers where the highlights can be painted.
-
TOP_LAYER
public static final PrioritizableHighlightPainter.ZLayer TOP_LAYER
The highest of the possible 3 layers where the highlights can be painted.
-
-
Method Detail
-
values
public static PrioritizableHighlightPainter.ZLayer[] 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 (PrioritizableHighlightPainter.ZLayer c : PrioritizableHighlightPainter.ZLayer.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrioritizableHighlightPainter.ZLayer 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 namejava.lang.NullPointerException
- if the argument is null
-
-