public interface ResourceRecordOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getName()
public abstract String getName() Relative name of the object affected by this record. Only applicable for
CNAME records. Example: 'www'.
string name = 1;
| Type | Description |
| String | The name. |
getNameBytes()
public abstract ByteString getNameBytes() Relative name of the object affected by this record. Only applicable for
CNAME records. Example: 'www'.
string name = 1;
| Type | Description |
| ByteString | The bytes for name. |
getRrdata()
public abstract String getRrdata()Data for this record. Values vary by record type, as defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1).
string rrdata = 2;
| Type | Description |
| String | The rrdata. |
getRrdataBytes()
public abstract ByteString getRrdataBytes()Data for this record. Values vary by record type, as defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1).
string rrdata = 2;
| Type | Description |
| ByteString | The bytes for rrdata. |
getType()
public abstract ResourceRecord.RecordType getType() Resource record type. Example: AAAA.
.google.appengine.v1.ResourceRecord.RecordType type = 3;
| Type | Description |
| ResourceRecord.RecordType | The type. |
getTypeValue()
public abstract int getTypeValue() Resource record type. Example: AAAA.
.google.appengine.v1.ResourceRecord.RecordType type = 3;
| Type | Description |
| int | The enum numeric value on the wire for type. |