Package codes.thischwa.cf
Enum-Klasse CfRequest
- Alle implementierten Schnittstellen:
Serializable,Comparable<CfRequest>,Constable
Enum CfRequest encapsulates various API endpoint paths for managing DNS zones and records in a
cohesive and reusable manner. Each enum constant represents a specific API request path.
-
Verschachtelte Klassen - Übersicht
Von Klasse geerbte verschachtelte Klassen/Schnittstellen java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum-Konstanten - Übersicht
Enum-KonstantenEnum-KonstanteBeschreibungRepresents the API endpoint path for creating a new DNS record within a specific DNS zone.Represents the API endpoint path for deleting an existing DNS record within a specific DNS zone.Represents the API endpoint path for retrieving information about a DNS record within a specific DNS zone by its name.Represents the API endpoint path for retrieving information about a DNS record within a specific DNS zone by its name and type.Represents the API endpoint path for updating an existing DNS record within a specific DNS zone.Represents the API endpoint path for retrieving information about a specific DNS zone by its name.Represents the API endpoint path for retrieving the list of DNS zones. -
Methodenübersicht
-
Enum-Konstanten - Details
-
ZONE_LIST
Represents the API endpoint path for retrieving the list of DNS zones. -
ZONE_INFO
Represents the API endpoint path for retrieving information about a specific DNS zone by its name. The endpoint path supports a placeholder for the zone name, which needs to be provided to construct the complete path. -
RECORD_CREATE
Represents the API endpoint path for creating a new DNS record within a specific DNS zone. The endpoint path includes a placeholder for the zone identifier, which needs to be provided to construct the complete path. -
RECORD_INFO_NAME
Represents the API endpoint path for retrieving information about a DNS record within a specific DNS zone by its name. The endpoint path includes placeholders for the zone identifier and the record name, which need to be provided to construct the complete path. -
RECORD_INFO_NAME_TYPE
Represents the API endpoint path for retrieving information about a DNS record within a specific DNS zone by its name and type. The endpoint path includes placeholders for the zone identifier, record name, and record type, which need to be provided to construct the complete path. -
RECORD_UPDATE
Represents the API endpoint path for updating an existing DNS record within a specific DNS zone. The endpoint path includes placeholders for the zone identifier and the record identifier, which need to be provided to construct the complete path. -
RECORD_DELETE
Represents the API endpoint path for deleting an existing DNS record within a specific DNS zone. The endpoint path includes placeholders for the zone identifier and the record identifier, which need to be provided to construct the complete path.
-
-
Methodendetails
-
values
Gibt ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration zurück.- Gibt zurück:
- ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration
-
valueOf
Gibt die Enum-Konstante dieser Klasse mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enum-Konstante in dieser Klasse deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)- Parameter:
name- Name der zurückzugebenden Enumerationskonstante.- Gibt zurück:
- Enumerationskonstante mit dem angegebenen Namen
- Löst aus:
IllegalArgumentException- wenn diese Enum-Klasse keine Konstante mit dem angegebenen Namen enthältNullPointerException- wenn das Argument nicht angegeben wird
-