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