public enum SequenceType extends Enum<SequenceType>
Enum Constant and Description |
---|
ANON |
API_FAULTSEQ |
API_INSEQ |
API_OUTSEQ |
NAMED |
PROXY_FAULTSEQ |
PROXY_INSEQ |
PROXY_OUTSEQ |
Modifier and Type | Method and Description |
---|---|
static SequenceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SequenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SequenceType PROXY_INSEQ
public static final SequenceType PROXY_OUTSEQ
public static final SequenceType PROXY_FAULTSEQ
public static final SequenceType API_INSEQ
public static final SequenceType API_OUTSEQ
public static final SequenceType API_FAULTSEQ
public static final SequenceType NAMED
public static final SequenceType ANON
public static SequenceType[] values()
for (SequenceType c : SequenceType.values()) System.out.println(c);
public static SequenceType 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 © 2005–2018 Apache Software Foundation. All rights reserved.