Uses of Enum Class
codes.thischwa.cf.model.RecordType
Packages that use RecordType
Package
Description
The base package of CloudflareDNS-java.
Fluent API interfaces and implementations for chainable DNS operations.
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 getRecord 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 getRecord 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.recordList(ZoneEntity zone, RecordType... types) Retrieves a list of all DNS records for a given zone.CfDnsClient.recordList(ZoneEntity zone, String sld, @Nullable RecordType... types) Retrieves DNS records for the specified second-level domain (SLD) within a zone. -
Uses of RecordType in codes.thischwa.cf.fluent
Methods in codes.thischwa.cf.fluent with parameters of type RecordTypeModifier and TypeMethodDescriptionRecordOperations.create(RecordType type, String content, int ttl) Creates a new DNS getRecord with the specified parameters.RecordOperationsImpl.create(RecordType type, String content, int ttl) voidRecordOperations.delete(RecordType... types) Deletes DNS records of the specified types.voidRecordOperationsImpl.delete(RecordType... types) ZoneOperations.getRecord(String sld, @Nullable RecordType... types) Selects a record with specific types within the zone for further operations.ZoneOperationsImpl.getRecord(String sld, @Nullable RecordType... types) ZoneOperations.list(@Nullable RecordType... types) Lists all DNS records within the zone, optionally filtered by types.ZoneOperationsImpl.list(@Nullable RecordType... types) Constructors in codes.thischwa.cf.fluent with parameters of type RecordTypeModifierConstructorDescriptionRecordOperationsImpl(CfDnsClient client, ZoneEntity zone, String sld, @Nullable RecordType[] types) Constructs a RecordOperationsImpl instance. -
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 content) Builds and returns aRecordEntityinstance with the specified attributes.