public enum UseIndicator extends Enum<UseIndicator>
Java class for UseIndicator.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="UseIndicator">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Implemented"/>
<enumeration value="Future"/>
<enumeration value="TestFacility"/>
<enumeration value="Unknown"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
FUTURE |
IMPLEMENTED |
TEST_FACILITY |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static UseIndicator |
fromValue(String v) |
String |
value() |
static UseIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UseIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UseIndicator IMPLEMENTED
public static final UseIndicator FUTURE
public static final UseIndicator TEST_FACILITY
public static final UseIndicator UNKNOWN
public static UseIndicator[] values()
for (UseIndicator c : UseIndicator.values()) System.out.println(c);
public static UseIndicator 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 UseIndicator fromValue(String v)
Copyright © 2020. All rights reserved.