public enum FlowTypeEnum extends Enum<FlowTypeEnum>
| Modifier and Type | Method and Description |
|---|---|
static FlowTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowTypeEnum REQ_RESP
public static final FlowTypeEnum ONE_WAY
public static FlowTypeEnum[] values()
for (FlowTypeEnum c : FlowTypeEnum.values()) System.out.println(c);
public static FlowTypeEnum 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 © 2011–2015 Talend Inc.. All rights reserved.