Package com.luciad.view.gxy.painter
Enum Class TLcdGXYCompositeLabelPainter.IndexRemappingMode
java.lang.Object
java.lang.Enum<TLcdGXYCompositeLabelPainter.IndexRemappingMode>
com.luciad.view.gxy.painter.TLcdGXYCompositeLabelPainter.IndexRemappingMode
- All Implemented Interfaces:
Serializable
,Comparable<TLcdGXYCompositeLabelPainter.IndexRemappingMode>
,Constable
- Enclosing class:
TLcdGXYCompositeLabelPainter
public static enum TLcdGXYCompositeLabelPainter.IndexRemappingMode
extends Enum<TLcdGXYCompositeLabelPainter.IndexRemappingMode>
Possible index remapping modes. See also
TLcdGXYCompositeLabelPainter
.- Since:
- 10.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionWhen using this index remapping mode, only the label indices are shifted.When using this index remapping mode, only the sublabel indices are shifted. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SHIFT_LABEL_INDEX
When using this index remapping mode, only the label indices are shifted. For example, when two label painters are used, on with a label count of 2 and one with a label count of 3, the composite will have label count 5. See alsoTLcdGXYCompositeLabelPainter
for an example. -
SHIFT_SUBLABEL_INDEX
When using this index remapping mode, only the sublabel indices are shifted. See alsoTLcdGXYCompositeLabelPainter
for an example.
-
-
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
-