public enum PanesState extends Enum<PanesState>
Enum Constant and Description |
---|
FROZEN
Panes are frozen, but were not split being frozen.
|
FROZEN_SPLIT
Panes are frozen and were split before being frozen.
|
SPLIT
Panes are split, but not frozen.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static PanesState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PanesState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PanesState FROZEN
public static final PanesState FROZEN_SPLIT
public static final PanesState SPLIT
public String toString()
toString
in class Enum<PanesState>
public static PanesState valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static PanesState[] values()
for (PanesState c : PanesState.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.