public static enum IServerImplMetadata.ImplType extends Enum<IServerImplMetadata.ImplType>
| Enum Constant and Description |
|---|
NATIVE_RPC
Java-native RPC protocol implementation.
|
UNKNOWN
Type is unknown.
|
| Modifier and Type | Method and Description |
|---|---|
static IServerImplMetadata.ImplType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IServerImplMetadata.ImplType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IServerImplMetadata.ImplType UNKNOWN
public static final IServerImplMetadata.ImplType NATIVE_RPC
public static IServerImplMetadata.ImplType[] values()
for (IServerImplMetadata.ImplType c : IServerImplMetadata.ImplType.values()) System.out.println(c);
public static IServerImplMetadata.ImplType 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 © 2017 Perforce Software. All Rights Reserved.