Interface DateTimeArrayOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DateTimeArray
,DateTimeArray.Builder
public interface DateTimeArrayOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.type.DateTime
getValues(int index)
List of datetime values.int
getValuesCount()
List of datetime values.List<com.google.type.DateTime>
getValuesList()
List of datetime values.com.google.type.DateTimeOrBuilder
getValuesOrBuilder(int index)
List of datetime values.List<? extends com.google.type.DateTimeOrBuilder>
getValuesOrBuilderList()
List of datetime values.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getValuesList
List<com.google.type.DateTime> getValuesList()
List of datetime values. Both OffsetDateTime and ZonedDateTime are supported.
repeated .google.type.DateTime values = 1;
-
getValues
com.google.type.DateTime getValues(int index)
List of datetime values. Both OffsetDateTime and ZonedDateTime are supported.
repeated .google.type.DateTime values = 1;
-
getValuesCount
int getValuesCount()
List of datetime values. Both OffsetDateTime and ZonedDateTime are supported.
repeated .google.type.DateTime values = 1;
-
getValuesOrBuilderList
List<? extends com.google.type.DateTimeOrBuilder> getValuesOrBuilderList()
List of datetime values. Both OffsetDateTime and ZonedDateTime are supported.
repeated .google.type.DateTime values = 1;
-
getValuesOrBuilder
com.google.type.DateTimeOrBuilder getValuesOrBuilder(int index)
List of datetime values. Both OffsetDateTime and ZonedDateTime are supported.
repeated .google.type.DateTime values = 1;
-
-