Package net.sourceforge.plantuml.svg
Enum LengthAdjust
- java.lang.Object
-
- java.lang.Enum<LengthAdjust>
-
- net.sourceforge.plantuml.svg.LengthAdjust
-
- All Implemented Interfaces:
Serializable
,Comparable<LengthAdjust>
public enum LengthAdjust extends Enum<LengthAdjust>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NONE
SPACING
SPACING_AND_GLYPHS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LengthAdjust
defaultValue()
static LengthAdjust
valueOf(String name)
Returns the enum constant of this type with the specified name.static LengthAdjust[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final LengthAdjust NONE
-
SPACING
public static final LengthAdjust SPACING
-
SPACING_AND_GLYPHS
public static final LengthAdjust SPACING_AND_GLYPHS
-
-
Method Detail
-
values
public static LengthAdjust[] 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 (LengthAdjust c : LengthAdjust.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LengthAdjust valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
defaultValue
public static LengthAdjust defaultValue()
-
-