public static enum ProxyModelBuilder.ProxyModelType extends java.lang.Enum<ProxyModelBuilder.ProxyModelType>
| Enum Constant and Description |
|---|
CLIENT
Client proxy model type.
|
SERVER
Server proxy model type.
|
| Modifier and Type | Method and Description |
|---|---|
static ProxyModelBuilder.ProxyModelType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProxyModelBuilder.ProxyModelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProxyModelBuilder.ProxyModelType CLIENT
public static final ProxyModelBuilder.ProxyModelType SERVER
public static ProxyModelBuilder.ProxyModelType[] values()
for (ProxyModelBuilder.ProxyModelType c : ProxyModelBuilder.ProxyModelType.values()) System.out.println(c);
public static ProxyModelBuilder.ProxyModelType 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