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

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

Uses of HCatFieldSchema in org.apache.hcatalog.common
 

Methods in org.apache.hcatalog.common that return types with arguments of type HCatFieldSchema
static java.util.List<HCatFieldSchema> HCatUtil.getHCatFieldSchemaList(org.apache.hadoop.hive.metastore.api.FieldSchema... fields)
           
static java.util.List<HCatFieldSchema> HCatUtil.getHCatFieldSchemaList(java.util.List<org.apache.hadoop.hive.metastore.api.FieldSchema> fields)
           
 

Method parameters in org.apache.hcatalog.common with type arguments of type HCatFieldSchema
static java.util.List<org.apache.hadoop.hive.metastore.api.FieldSchema> HCatUtil.getFieldSchemaList(java.util.List<HCatFieldSchema> hcatFields)
           
 

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

Methods in org.apache.hcatalog.data.schema that return HCatFieldSchema
 HCatFieldSchema HCatSchema.get(int position)
           
 HCatFieldSchema HCatSchema.get(java.lang.String fieldName)
           
static HCatFieldSchema HCatSchemaUtils.getHCatFieldSchema(org.apache.hadoop.hive.metastore.api.FieldSchema fs)
          Convert a HCatFieldSchema to a FieldSchema
 

Methods in org.apache.hcatalog.data.schema that return types with arguments of type HCatFieldSchema
 java.util.List<HCatFieldSchema> HCatSchema.getFields()
          Users are not allowed to modify the list directly, since HCatSchema maintains internal state.
 

Methods in org.apache.hcatalog.data.schema with parameters of type HCatFieldSchema
 HCatSchemaUtils.CollectionBuilder HCatSchemaUtils.CollectionBuilder.addField(HCatFieldSchema fieldColumnSchema)
           
 void HCatSchema.append(HCatFieldSchema hfs)
           
static org.apache.hadoop.hive.metastore.api.FieldSchema HCatSchemaUtils.getFieldSchema(HCatFieldSchema hcatFieldSchema)
           
 void HCatSchema.remove(HCatFieldSchema hcatFieldSchema)
           
 

Method parameters in org.apache.hcatalog.data.schema with type arguments of type HCatFieldSchema
static java.util.List<org.apache.hadoop.hive.metastore.api.FieldSchema> HCatSchemaUtils.getFieldSchemas(java.util.List<HCatFieldSchema> hcatFieldSchemas)
           
 

Constructor parameters in org.apache.hcatalog.data.schema with type arguments of type HCatFieldSchema
HCatSchema(java.util.List<HCatFieldSchema> fieldSchemas)
           
 

Uses of HCatFieldSchema in org.apache.hcatalog.pig
 

Methods in org.apache.hcatalog.pig with parameters of type HCatFieldSchema
static java.lang.Object PigHCatUtil.extractPigObject(java.lang.Object o, HCatFieldSchema hfs)
           
static byte PigHCatUtil.getPigType(HCatFieldSchema hfs)
           
static org.apache.pig.data.DataBag PigHCatUtil.transformToBag(java.util.List<? extends java.lang.Object> list, HCatFieldSchema hfs)
           
static java.util.Map<java.lang.String,java.lang.Object> PigHCatUtil.transformToPigMap(java.util.Map<java.lang.String,java.lang.Object> map, HCatFieldSchema hfs)
           
static org.apache.pig.data.Tuple PigHCatUtil.transformToTuple(java.util.List<? extends java.lang.Object> objList, HCatFieldSchema hfs)