Interface MetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Metadata,Metadata.Builder
public interface MetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.TimestampgetCreated()Creation time of the element.com.google.protobuf.TimestampOrBuildergetCreatedOrBuilder()Creation time of the element.com.google.protobuf.TimestampgetUpdated()Update time of the elementcom.google.protobuf.TimestampOrBuildergetUpdatedOrBuilder()Update time of the elementbooleanhasCreated()Creation time of the element.booleanhasUpdated()Update time of the element-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasCreated
boolean hasCreated()
Creation time of the element.
.google.protobuf.Timestamp created = 1 [json_name = "created"];- Returns:
- Whether the created field is set.
-
getCreated
com.google.protobuf.Timestamp getCreated()
Creation time of the element.
.google.protobuf.Timestamp created = 1 [json_name = "created"];- Returns:
- The created.
-
getCreatedOrBuilder
com.google.protobuf.TimestampOrBuilder getCreatedOrBuilder()
Creation time of the element.
.google.protobuf.Timestamp created = 1 [json_name = "created"];
-
hasUpdated
boolean hasUpdated()
Update time of the element
.google.protobuf.Timestamp updated = 2 [json_name = "updated"];- Returns:
- Whether the updated field is set.
-
getUpdated
com.google.protobuf.Timestamp getUpdated()
Update time of the element
.google.protobuf.Timestamp updated = 2 [json_name = "updated"];- Returns:
- The updated.
-
getUpdatedOrBuilder
com.google.protobuf.TimestampOrBuilder getUpdatedOrBuilder()
Update time of the element
.google.protobuf.Timestamp updated = 2 [json_name = "updated"];
-
-