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 StringgetDescription()The description of the propertycom.google.protobuf.ByteStringgetDescriptionBytes()The description of the propertyStringgetName()The name of the property (a.k.a key).com.google.protobuf.ByteStringgetNameBytes()The name of the property (a.k.a key).Property.PropertyTypegetType()The type of this property.intgetTypeValue()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
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
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.
-
-