public enum StarStringType extends Enum<StarStringType>
Java class for StarStringType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="StarStringType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="*"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
VALUE_1 |
| Modifier and Type | Method and Description |
|---|---|
static StarStringType |
fromValue(String v) |
String |
value() |
static StarStringType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StarStringType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StarStringType VALUE_1
public static StarStringType[] values()
for (StarStringType c : StarStringType.values()) System.out.println(c);
public static StarStringType 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 StarStringType fromValue(String v)
This work is licensed under a Creative Commons Attribution 4.0 International License.