public static enum Argument.ArgumentListStatus extends Enum<Argument.ArgumentListStatus>
Enum Constant and Description |
---|
NOT_SPECIFIED |
REPEATING |
SINGLETON |
Modifier and Type | Method and Description |
---|---|
static Argument.ArgumentListStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Argument.ArgumentListStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Argument.ArgumentListStatus NOT_SPECIFIED
public static final Argument.ArgumentListStatus SINGLETON
public static final Argument.ArgumentListStatus REPEATING
public static Argument.ArgumentListStatus[] values()
for (Argument.ArgumentListStatus c : Argument.ArgumentListStatus.values()) System.out.println(c);
public static Argument.ArgumentListStatus 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 © 2014–2021 Health Level 7. All rights reserved.