Package org.tensorflow.metadata.v0
Interface TimeDomainOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TimeDomain,TimeDomain.Builder
public interface TimeDomainOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimeDomain.FormatCasegetFormatCase()TimeDomain.IntegerTimeFormatgetIntegerFormat()Expected format of integer times.StringgetStringFormat()Expected format that contains a combination of regular characters and special format specifiers.com.google.protobuf.ByteStringgetStringFormatBytes()Expected format that contains a combination of regular characters and special format specifiers.booleanhasIntegerFormat()Expected format of integer times.booleanhasStringFormat()Expected format that contains a combination of regular characters and special format specifiers.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasStringFormat
boolean hasStringFormat()
Expected format that contains a combination of regular characters and special format specifiers. Format specifiers are a subset of the strptime standard.
string string_format = 1;- Returns:
- Whether the stringFormat field is set.
-
getStringFormat
String getStringFormat()
Expected format that contains a combination of regular characters and special format specifiers. Format specifiers are a subset of the strptime standard.
string string_format = 1;- Returns:
- The stringFormat.
-
getStringFormatBytes
com.google.protobuf.ByteString getStringFormatBytes()
Expected format that contains a combination of regular characters and special format specifiers. Format specifiers are a subset of the strptime standard.
string string_format = 1;- Returns:
- The bytes for stringFormat.
-
hasIntegerFormat
boolean hasIntegerFormat()
Expected format of integer times.
.tensorflow.metadata.v0.TimeDomain.IntegerTimeFormat integer_format = 2;- Returns:
- Whether the integerFormat field is set.
-
getIntegerFormat
TimeDomain.IntegerTimeFormat getIntegerFormat()
Expected format of integer times.
.tensorflow.metadata.v0.TimeDomain.IntegerTimeFormat integer_format = 2;- Returns:
- The integerFormat.
-
getFormatCase
TimeDomain.FormatCase getFormatCase()
-
-