Enum-Klasse CfRequest

java.lang.Object
java.lang.Enum<CfRequest>
codes.thischwa.cf.CfRequest
Alle implementierten Schnittstellen:
Serializable, Comparable<CfRequest>, Constable

public enum CfRequest extends Enum<CfRequest>
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-Konstanten
    Enum-Konstante
    Beschreibung
    Represents 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

    Modifizierer und Typ
    Methode
    Beschreibung
    static CfRequest
    Gibt die Enum-Konstante dieser Klasse mit dem angegebenen Namen zurück.
    static CfRequest[]
    Gibt ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration zurück.

    Von Klasse geerbte Methoden java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum-Konstanten - Details

    • ZONE_LIST

      public static final CfRequest ZONE_LIST
      Represents the API endpoint path for retrieving the list of DNS zones.
    • ZONE_INFO

      public static final CfRequest 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

      public static final CfRequest 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

      public static final CfRequest 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

      public static final CfRequest 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

      public static final CfRequest 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

      public static final CfRequest 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

      public static CfRequest[] 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

      public static CfRequest valueOf(String name)
      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ält
      NullPointerException - wenn das Argument nicht angegeben wird