public enum STFrameLayout extends Enum<STFrameLayout>
Java class for ST_FrameLayout.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_FrameLayout">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="rows"/>
<enumeration value="cols"/>
<enumeration value="none"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
COLS
Stack Frames
Horizontally
|
NONE
Do Not Stack Frames
|
ROWS
Stack Frames Vertically
|
| Modifier and Type | Method and Description |
|---|---|
static STFrameLayout |
fromValue(String v) |
String |
value() |
static STFrameLayout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STFrameLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STFrameLayout ROWS
public static final STFrameLayout COLS
public static final STFrameLayout NONE
public static STFrameLayout[] values()
for (STFrameLayout c : STFrameLayout.values()) System.out.println(c);
public static STFrameLayout 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 String value()
public static STFrameLayout fromValue(String v)
Copyright © 2007-2020. All Rights Reserved.