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

shark.api.DataType Maven / Gradle / Ivy

The newest version!
package shark.api;

import java.io.Serializable;


public class DataType implements Serializable {

  public final String name;
  public final String hiveName;
  public final boolean isPrimitive;

  DataType(String name, String hiveName, boolean isPrimitive) {
    this.name = name;
    this.hiveName = hiveName;
    this.isPrimitive = isPrimitive;
  }

  @Override
  public String toString() {
    return name;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy