public enum InterfaceType extends java.lang.Enum<InterfaceType>
| Enum Constant and Description |
|---|
DIRECT_TO_BANK |
SERVER_TO_H5WEB |
SERVER_TO_SERVER |
SERVER_TO_WEB |
| Modifier and Type | Method and Description |
|---|---|
static InterfaceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InterfaceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterfaceType SERVER_TO_SERVER
public static final InterfaceType SERVER_TO_WEB
public static final InterfaceType SERVER_TO_H5WEB
public static final InterfaceType DIRECT_TO_BANK
public static InterfaceType[] values()
for (InterfaceType c : InterfaceType.values()) System.out.println(c);
public static InterfaceType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null