All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tensorflow.metadata.v0.IntDomainOrBuilder Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: tensorflow_metadata/proto/v0/schema.proto

// Protobuf Java Version: 3.25.4
package org.tensorflow.metadata.v0;

public interface IntDomainOrBuilder extends
    // @@protoc_insertion_point(interface_extends:tensorflow.metadata.v0.IntDomain)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   * 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; * @return Whether the name field is set. */ 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; * @return The name. */ java.lang.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; * @return The bytes for name. */ com.google.protobuf.ByteString getNameBytes(); /** *
   * Min and max values for the domain.
   * 
* * optional int64 min = 3; * @return Whether the min field is set. */ boolean hasMin(); /** *
   * Min and max values for the domain.
   * 
* * optional int64 min = 3; * @return The min. */ long getMin(); /** * optional int64 max = 4; * @return Whether the max field is set. */ boolean hasMax(); /** * optional int64 max = 4; * @return The max. */ long getMax(); /** *
   * If true then the domain encodes categorical values (i.e., ids) rather than
   * ordinal values.
   * 
* * optional bool is_categorical = 5; * @return Whether the isCategorical field is set. */ boolean hasIsCategorical(); /** *
   * If true then the domain encodes categorical values (i.e., ids) rather than
   * ordinal values.
   * 
* * optional bool is_categorical = 5; * @return The isCategorical. */ boolean getIsCategorical(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy