Package org.tensorflow.metadata.v0
Interface ValueCountOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ValueCount,ValueCount.Builder
public interface ValueCountOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetMax()optional int64 max = 2;longgetMin()optional int64 min = 1;booleanhasMax()optional int64 max = 2;booleanhasMin()optional int64 min = 1;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasMin
boolean hasMin()
optional int64 min = 1;- Returns:
- Whether the min field is set.
-
getMin
long getMin()
optional int64 min = 1;- Returns:
- The min.
-
hasMax
boolean hasMax()
optional int64 max = 2;- Returns:
- Whether the max field is set.
-
getMax
long getMax()
optional int64 max = 2;- Returns:
- The max.
-
-