Uses of Enum Class
codes.thischwa.cf.model.RecordType
Packages that use RecordType
Package
Description
The base package of CloudflareDNS-java.
The model of CloudflareDNS-java.
-
Uses of RecordType in codes.thischwa.cf
Methods in codes.thischwa.cf with parameters of type RecordTypeModifier and TypeMethodDescriptionCfDnsClient.recordCreate(ZoneEntity zone, String name, int ttl, RecordType type, String content) Creates a DNS record in the specified DNS zone with the provided details.CfDnsClient.recordCreateSld(ZoneEntity zone, String sld, int ttl, RecordType type, String content) Creates a new DNS record for a given second-level domain (SLD) within the specified zone.voidCfDnsClient.recordDeleteTypeIfExists(ZoneEntity zone, String sld, RecordType... recordTypes) Deletes DNS records of a specific type within a given zone if they exist.CfDnsClient.sldInfo(ZoneEntity zone, String sld, RecordType type) Retrieves detailed information about a specific second-level domain (SLD) record for a given zone and record type from the Cloudflare API. -
Uses of RecordType in codes.thischwa.cf.model
Methods in codes.thischwa.cf.model that return RecordTypeModifier and TypeMethodDescriptionstatic RecordTypeReturns the enum constant of this class with the specified name.static RecordType[]RecordType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in codes.thischwa.cf.model with parameters of type RecordTypeModifier and TypeMethodDescriptionstatic RecordEntityRecordEntity.build(String name, RecordType type, Integer ttl, String ip) Builds and returns aRecordEntityinstance with the specified attributes.