Uses of Class
org.apache.hcatalog.data.schema.HCatFieldSchema.Type

Packages that use HCatFieldSchema.Type
org.apache.hcatalog.data.schema   
org.apache.hcatalog.pig   
 

Uses of HCatFieldSchema.Type in org.apache.hcatalog.data.schema
 

Methods in org.apache.hcatalog.data.schema that return HCatFieldSchema.Type
 HCatFieldSchema.Type HCatFieldSchema.getMapKeyType()
           
 HCatFieldSchema.Type HCatFieldSchema.getType()
          Returns type of the field
static HCatFieldSchema.Type HCatFieldSchema.Type.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static HCatFieldSchema.Type[] HCatFieldSchema.Type.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.apache.hcatalog.data.schema with parameters of type HCatFieldSchema.Type
static HCatFieldSchema.Category HCatFieldSchema.Category.fromType(HCatFieldSchema.Type type)
           
 HCatSchemaUtils.MapBuilder HCatSchemaUtils.MapBuilder.withKeyType(HCatFieldSchema.Type keyType)
           
 

Constructors in org.apache.hcatalog.data.schema with parameters of type HCatFieldSchema.Type
HCatFieldSchema(java.lang.String fieldName, HCatFieldSchema.Type type, HCatFieldSchema.Type mapKeyType, HCatSchema mapValueSchema, java.lang.String comment)
          Constructor for constructing a MAP type HCatFieldSchema, passing type of key and value
HCatFieldSchema(java.lang.String fieldName, HCatFieldSchema.Type type, HCatSchema subSchema, java.lang.String comment)
          Constructor for constructing a ARRAY type or STRUCT type HCatFieldSchema, passing type and subschema
HCatFieldSchema(java.lang.String fieldName, HCatFieldSchema.Type type, java.lang.String comment)
          Constructor constructing a primitive datatype HCatFieldSchema
 

Uses of HCatFieldSchema.Type in org.apache.hcatalog.pig
 

Methods in org.apache.hcatalog.pig with parameters of type HCatFieldSchema.Type
static byte PigHCatUtil.getPigType(HCatFieldSchema.Type type)