public enum SectorCodes extends Enum<SectorCodes>
Java class for SectorCodes.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SectorCodes"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="A"/> <enumeration value="B"/> <enumeration value="C"/> <enumeration value="D"/> <enumeration value="E"/> <enumeration value="F"/> <enumeration value="G"/> <enumeration value="H"/> <enumeration value="I"/> <enumeration value="J"/> <enumeration value="K"/> <enumeration value="L"/> <enumeration value="M"/> <enumeration value="N"/> <enumeration value="O"/> <enumeration value="P"/> <enumeration value="Q"/> <enumeration value="R"/> <enumeration value="S"/> <enumeration value="T"/> <enumeration value="U"/> <enumeration value="V"/> <enumeration value="W"/> <enumeration value="X"/> </restriction> </simpleType>
Enum Constant and Description |
---|
A
from 000 to 015
|
B
From 015 to 030
|
C
From 030 to 045
|
D
From 045 to 060
|
E
From 060 to 075
|
F
From 075 to 090
|
G
From 090 to 105
|
H
From 105 to 120
|
I
From 120 to 135
|
J
From 135 to 150
|
K
From 150 to 165
|
L
From 165 to 180
|
M
From 180 to 195
|
N
From 195 to 210
|
O
From 210 to 225
|
P
From 225 to 240
|
Q
From 240 to 255
|
R
From255 to 270
|
S
From 270 to 285
|
T
From 285 to 300
|
U
From 300 to 315
|
V
From 315 to 330
|
W
From 330 to 345
|
X
From 345 to 000
|
Modifier and Type | Method and Description |
---|---|
static SectorCodes |
fromValue(String v) |
String |
value() |
static SectorCodes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SectorCodes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SectorCodes A
public static final SectorCodes B
public static final SectorCodes C
public static final SectorCodes D
public static final SectorCodes E
public static final SectorCodes F
public static final SectorCodes G
public static final SectorCodes H
public static final SectorCodes I
public static final SectorCodes J
public static final SectorCodes K
public static final SectorCodes L
public static final SectorCodes M
public static final SectorCodes N
public static final SectorCodes O
public static final SectorCodes P
public static final SectorCodes Q
public static final SectorCodes R
public static final SectorCodes S
public static final SectorCodes T
public static final SectorCodes U
public static final SectorCodes V
public static final SectorCodes W
public static final SectorCodes X
public static SectorCodes[] values()
for (SectorCodes c : SectorCodes.values()) System.out.println(c);
public static SectorCodes 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 SectorCodes fromValue(String v)
Copyright © 2017. All rights reserved.