Uses of Class
org.minidns.record.Record.TYPE
-
Packages that use Record.TYPE Package Description org.minidns.dnsmessage org.minidns.record -
-
Uses of Record.TYPE in org.minidns.dnsmessage
Fields in org.minidns.dnsmessage declared as Record.TYPE Modifier and Type Field Description Record.TYPEQuestion. typeThe question type (e.g.Constructors in org.minidns.dnsmessage with parameters of type Record.TYPE Constructor Description Question(CharSequence name, Record.TYPE type)Create a dns question for the given name/type/IN (internet class).Question(CharSequence name, Record.TYPE type, Record.CLASS clazz)Create a dns question for the given name/type/class.Question(CharSequence name, Record.TYPE type, Record.CLASS clazz, boolean unicastQuery)Create a dns question for the given name/type/class.Question(DnsName name, Record.TYPE type)Create a dns question for the given name/type/IN (internet class).Question(DnsName name, Record.TYPE type, Record.CLASS clazz)Create a dns question for the given name/type/class.Question(DnsName name, Record.TYPE type, Record.CLASS clazz, boolean unicastQuery) -
Uses of Record.TYPE in org.minidns.record
Fields in org.minidns.record declared as Record.TYPE Modifier and Type Field Description Record.TYPERecord. typeThe type (and payload type) of this record.Record.TYPERRSIG. typeCoveredThe type of RRset covered by this signature.Fields in org.minidns.record with type parameters of type Record.TYPE Modifier and Type Field Description List<Record.TYPE>NSEC. typesThe RR types existing at the owner name.List<Record.TYPE>NSEC3. typesThe RR types existing at the original owner name.Methods in org.minidns.record that return Record.TYPE Modifier and Type Method Description Record.TYPEA. getType()Record.TYPEAAAA. getType()Record.TYPECNAME. getType()abstract Record.TYPEData. getType()The payload type.Record.TYPEDLV. getType()Record.TYPEDNAME. getType()Record.TYPEDNSKEY. getType()Record.TYPEDS. getType()Record.TYPEMX. getType()Record.TYPENS. getType()Record.TYPENSEC. getType()Record.TYPENSEC3. getType()Record.TYPENSEC3PARAM. getType()Record.TYPEOPENPGPKEY. getType()Record.TYPEOPT. getType()Record.TYPEPTR. getType()static Record.TYPERecord.TYPE. getType(int value)Retrieve the symbolic type of the binary value.static <D extends Data>
Record.TYPERecord.TYPE. getType(Class<D> dataClass)Retrieve the type for a givenDataclass.Record.TYPERRSIG. getType()Record.TYPESOA. getType()Record.TYPESRV. getType()Record.TYPETLSA. getType()Record.TYPETXT. getType()Record.TYPEUNKNOWN. getType()static Record.TYPERecord.TYPE. valueOf(String name)Returns the enum constant of this type with the specified name.static Record.TYPE[]Record.TYPE. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.minidns.record that return types with arguments of type Record.TYPE Modifier and Type Method Description (package private) static List<Record.TYPE>NSEC. readTypeBitMap(byte[] typeBitmap)Methods in org.minidns.record with parameters of type Record.TYPE Modifier and Type Method Description static UNKNOWNUNKNOWN. parse(DataInputStream dis, int payloadLength, Record.TYPE type)Method parameters in org.minidns.record with type arguments of type Record.TYPE Modifier and Type Method Description (package private) static byte[]NSEC. createTypeBitMap(List<Record.TYPE> types)Constructors in org.minidns.record with parameters of type Record.TYPE Constructor Description NSEC(String next, Record.TYPE... types)NSEC3(byte hashAlgorithm, byte flags, int iterations, byte[] salt, byte[] nextHashed, Record.TYPE... types)Record(String name, Record.TYPE type, int clazzValue, long ttl, D payloadData)Record(String name, Record.TYPE type, Record.CLASS clazz, long ttl, D payloadData, boolean unicastQuery)Record(DnsName name, Record.TYPE type, int clazzValue, long ttl, D payloadData)Record(DnsName name, Record.TYPE type, Record.CLASS clazz, long ttl, D payloadData, boolean unicastQuery)RRSIG(Record.TYPE typeCovered, int algorithm, byte labels, long originalTtl, Date signatureExpiration, Date signatureInception, int keyTag, String signerName, byte[] signature)RRSIG(Record.TYPE typeCovered, int algorithm, byte labels, long originalTtl, Date signatureExpiration, Date signatureInception, int keyTag, DnsName signerName, byte[] signature)RRSIG(Record.TYPE typeCovered, DnssecConstants.SignatureAlgorithm algorithm, byte labels, long originalTtl, Date signatureExpiration, Date signatureInception, int keyTag, String signerName, byte[] signature)RRSIG(Record.TYPE typeCovered, DnssecConstants.SignatureAlgorithm algorithm, byte labels, long originalTtl, Date signatureExpiration, Date signatureInception, int keyTag, DnsName signerName, byte[] signature)Constructor parameters in org.minidns.record with type arguments of type Record.TYPE Constructor Description NSEC(String next, List<Record.TYPE> types)NSEC(DnsName next, List<Record.TYPE> types)NSEC3(byte hashAlgorithm, byte flags, int iterations, byte[] salt, byte[] nextHashed, List<Record.TYPE> types)
-