public enum STTickMark extends Enum<STTickMark>
Java class for ST_TickMark.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_TickMark"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="cross"/> <enumeration value="in"/> <enumeration value="none"/> <enumeration value="out"/> </restriction> </simpleType>
Enum Constant and Description |
---|
CROSS
Cross
|
IN
Inside
|
NONE
None
|
OUT
Outside
|
Modifier and Type | Method and Description |
---|---|
static STTickMark |
fromValue(String v) |
String |
value() |
static STTickMark |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STTickMark[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STTickMark CROSS
public static final STTickMark IN
public static final STTickMark NONE
public static final STTickMark OUT
public static STTickMark[] values()
for (STTickMark c : STTickMark.values()) System.out.println(c);
public static STTickMark 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 STTickMark fromValue(String v)
Copyright © 2007-2013. All Rights Reserved.