public enum STLinearDirection extends Enum<STLinearDirection>
Java class for ST_LinearDirection.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_LinearDirection"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="fromL"/> <enumeration value="fromR"/> <enumeration value="fromT"/> <enumeration value="fromB"/> </restriction> </simpleType>
Enum Constant and Description |
---|
FROM_B
From Bottom
|
FROM_L
From Left
|
FROM_R
From Right
|
FROM_T
From Top
|
Modifier and Type | Method and Description |
---|---|
static STLinearDirection |
fromValue(String v) |
String |
value() |
static STLinearDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STLinearDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STLinearDirection FROM_L
public static final STLinearDirection FROM_R
public static final STLinearDirection FROM_T
public static final STLinearDirection FROM_B
public static STLinearDirection[] values()
for (STLinearDirection c : STLinearDirection.values()) System.out.println(c);
public static STLinearDirection 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 STLinearDirection fromValue(String v)
Copyright © 2007-2014. All Rights Reserved.