public enum LevelStatus extends Enum<LevelStatus>
Enum Constant and Description |
---|
anctag |
block |
doc |
end |
header |
imap |
iseq |
map |
mapx |
open |
pause |
seq |
seqx |
str |
Modifier and Type | Method and Description |
---|---|
static LevelStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LevelStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LevelStatus header
public static final LevelStatus doc
public static final LevelStatus open
public static final LevelStatus seq
public static final LevelStatus map
public static final LevelStatus block
public static final LevelStatus str
public static final LevelStatus iseq
public static final LevelStatus imap
public static final LevelStatus end
public static final LevelStatus pause
public static final LevelStatus anctag
public static final LevelStatus mapx
public static final LevelStatus seqx
public static LevelStatus[] values()
for (LevelStatus c : LevelStatus.values()) System.out.println(c);
public static LevelStatus 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 nullCopyright © 2021. All rights reserved.