Package org.tensorflow.metadata.v0
Interface FloatDomainOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FloatDomain,FloatDomain.Builder
public interface FloatDomainOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description floatgetMax()optional float max = 4;floatgetMin()Min and max values of the domain.StringgetName()Id of the domain.com.google.protobuf.ByteStringgetNameBytes()Id of the domain.booleanhasMax()optional float max = 4;booleanhasMin()Min and max values of the domain.booleanhasName()Id of the domain.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasName
boolean hasName()
Id of the domain. Required if the domain is defined at the schema level. If so, then the name must be unique within the schema.
optional string name = 1;- Returns:
- Whether the name field is set.
-
getName
String getName()
Id of the domain. Required if the domain is defined at the schema level. If so, then the name must be unique within the schema.
optional string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Id of the domain. Required if the domain is defined at the schema level. If so, then the name must be unique within the schema.
optional string name = 1;- Returns:
- The bytes for name.
-
hasMin
boolean hasMin()
Min and max values of the domain.
optional float min = 3;- Returns:
- Whether the min field is set.
-
getMin
float getMin()
Min and max values of the domain.
optional float min = 3;- Returns:
- The min.
-
hasMax
boolean hasMax()
optional float max = 4;- Returns:
- Whether the max field is set.
-
getMax
float getMax()
optional float max = 4;- Returns:
- The max.
-
-