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