Uses of Class
de.measite.minidns.Record.CLASS
-
Packages that use Record.CLASS Package Description de.measite.minidns -
-
Uses of Record.CLASS in de.measite.minidns
Fields in de.measite.minidns declared as Record.CLASS Modifier and Type Field Description private Record.CLASSQuestion. clazzThe question class (usually IN / internet).protected Record.CLASSRecord. clazzThe record class (usually CLASS.IN).Fields in de.measite.minidns with type parameters of type Record.CLASS Modifier and Type Field Description private static java.util.HashMap<java.lang.Integer,Record.CLASS>Record.CLASS. INVERSE_LUTInternal reverse lookup table to map binary class values to symbolic names.Methods in de.measite.minidns that return Record.CLASS Modifier and Type Method Description static Record.CLASSRecord.CLASS. getClass(int value)Retrieve the symbolic DNS class for a binary class value.Record.CLASSQuestion. getClazz()Retrieve the class of this dns question (usually internet).static Record.CLASSRecord.CLASS. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Record.CLASS[]Record.CLASS. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in de.measite.minidns with parameters of type Record.CLASS Modifier and Type Method Description DNSMessageClient. query(java.lang.String name, Record.TYPE type, Record.CLASS clazz)Query the system nameservers for a single entry of any class.DNSMessageClient. query(java.lang.String name, Record.TYPE type, Record.CLASS clazz, java.lang.String host)Query a nameserver for a single entry.DNSMessageClient. query(java.lang.String name, Record.TYPE type, Record.CLASS clazz, java.lang.String host, int port)Query a nameserver for a single entry.Constructors in de.measite.minidns with parameters of type Record.CLASS Constructor Description Question(java.lang.String name, Record.TYPE type, Record.CLASS clazz)Create a dns question for the given name/type/class.Question(java.lang.String name, Record.TYPE type, Record.CLASS clazz, boolean unicastQuery)Create a dns question for the given name/type/class.
-