public enum ServerObjectType extends java.lang.Enum<ServerObjectType>
| Enum Constant and Description |
|---|
CONTACT |
DOMAIN |
KEYSET |
NSSET |
OTHER |
| Modifier and Type | Method and Description |
|---|---|
static ServerObjectType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServerObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServerObjectType DOMAIN
public static final ServerObjectType CONTACT
public static final ServerObjectType NSSET
public static final ServerObjectType KEYSET
public static final ServerObjectType OTHER
public static ServerObjectType[] values()
for (ServerObjectType c : ServerObjectType.values()) System.out.println(c);
public static ServerObjectType 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 nullCopyright © 2021. All rights reserved.