public static enum Style.PhysicalBoxSide extends Enum<Style.PhysicalBoxSide>
Enum Constant and Description |
---|
BottomSide |
LeftSide |
NilSide |
RightSide |
TopSide |
Modifier and Type | Method and Description |
---|---|
static Style.PhysicalBoxSide |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style.PhysicalBoxSide[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.PhysicalBoxSide NilSide
public static final Style.PhysicalBoxSide TopSide
public static final Style.PhysicalBoxSide RightSide
public static final Style.PhysicalBoxSide BottomSide
public static final Style.PhysicalBoxSide LeftSide
public static Style.PhysicalBoxSide[] values()
for (Style.PhysicalBoxSide c : Style.PhysicalBoxSide.values()) System.out.println(c);
public static Style.PhysicalBoxSide 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 nullRevision 4.0.15 / 20220727-0149