public enum ListType extends java.lang.Enum<ListType>
LIST_ALL - selects all objects of given type, defined by ServerObjectTypeDOMAINS_BY_CONTACTS - select domains by a contact (registrant or administrative contact)DOMAINS_BY_NSSETS - select domains by an nssetDOMAINS_BY_KEYSET - select domains by a keysetNSSETS_BY_CONTACT - select nssets by a technical contactKEYSETS_BY_CONTACT - select keysets by a technical contactNSSETS_BY_NS - select nssets by a name server| Enum Constant and Description |
|---|
DOMAINS_BY_CONTACTS |
DOMAINS_BY_KEYSET |
DOMAINS_BY_NSSETS |
KEYSETS_BY_CONTACT |
LIST_ALL |
NSSETS_BY_CONTACT |
NSSETS_BY_NS |
| Modifier and Type | Method and Description |
|---|---|
static ListType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ListType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListType LIST_ALL
public static final ListType DOMAINS_BY_CONTACTS
public static final ListType DOMAINS_BY_NSSETS
public static final ListType DOMAINS_BY_KEYSET
public static final ListType NSSETS_BY_CONTACT
public static final ListType KEYSETS_BY_CONTACT
public static final ListType NSSETS_BY_NS
public static ListType[] values()
for (ListType c : ListType.values()) System.out.println(c);
public static ListType 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 © 2023. All rights reserved.