Package com.google.api
Interface PropertyOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Property
,Property.Builder
public interface PropertyOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDescription()
The description of the propertycom.google.protobuf.ByteString
getDescriptionBytes()
The description of the propertyjava.lang.String
getName()
The name of the property (a.k.a key).com.google.protobuf.ByteString
getNameBytes()
The name of the property (a.k.a key).Property.PropertyType
getType()
The type of this property.int
getTypeValue()
The type of this property.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
The name of the property (a.k.a key).
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The name of the property (a.k.a key).
string name = 1;
- Returns:
- The bytes for name.
-
getTypeValue
int getTypeValue()
The type of this property.
.google.api.Property.PropertyType type = 2;
- Returns:
- The enum numeric value on the wire for type.
-
getType
Property.PropertyType getType()
The type of this property.
.google.api.Property.PropertyType type = 2;
- Returns:
- The type.
-
getDescription
java.lang.String getDescription()
The description of the property
string description = 3;
- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
The description of the property
string description = 3;
- Returns:
- The bytes for description.
-
-