Interface AnnotationSpecOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AnnotationSpec,AnnotationSpec.Builder
public interface AnnotationSpecOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()Optional.com.google.protobuf.ByteStringgetDescriptionBytes()Optional.StringgetDisplayName()Required.com.google.protobuf.ByteStringgetDisplayNameBytes()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDisplayName
String getDisplayName()
Required. The display name of the AnnotationSpec. Maximum of 64 characters.
string display_name = 1;- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
Required. The display name of the AnnotationSpec. Maximum of 64 characters.
string display_name = 1;- Returns:
- The bytes for displayName.
-
getDescription
String getDescription()
Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
string description = 2;- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
string description = 2;- Returns:
- The bytes for description.
-
-