public enum UsageType extends Enum<UsageType>
Java class for UsageType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="UsageType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="U"/>
<enumeration value="S"/>
<enumeration value="B"/>
<enumeration value="L"/>
<enumeration value="A"/>
<enumeration value="E"/>
<enumeration value="X"/>
<enumeration value="Y"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
A
Abbreviated name
|
B
Business name
|
E
Enterprise name
|
L
Locally used name
|
S
Service location name
|
U
Organisational
unit/section/division name
|
X
Other
|
Y
Unknown
|
| Modifier and Type | Method and Description |
|---|---|
static UsageType |
fromValue(String v) |
String |
value() |
static UsageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UsageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UsageType U
public static final UsageType S
public static final UsageType B
public static final UsageType L
public static final UsageType A
public static final UsageType E
public static final UsageType X
public static final UsageType Y
public static UsageType[] values()
for (UsageType c : UsageType.values()) System.out.println(c);
public static UsageType 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()
Copyright © 2021. All rights reserved.