public enum EnumPipeColourType extends java.lang.Enum<EnumPipeColourType>
Enum Constant and Description |
---|
BORDER_INNER |
BORDER_OUTER |
CUSTOM |
TRANSLUCENT |
Modifier and Type | Method and Description |
---|---|
static EnumPipeColourType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumPipeColourType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumPipeColourType TRANSLUCENT
public static final EnumPipeColourType BORDER_OUTER
public static final EnumPipeColourType BORDER_INNER
public static final EnumPipeColourType CUSTOM
public static EnumPipeColourType[] values()
for (EnumPipeColourType c : EnumPipeColourType.values()) System.out.println(c);
public static EnumPipeColourType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null