Uses of Interface
org.apache.hadoop.hive.serde2.Deserializer

Packages that use Deserializer
org.apache.hadoop.hive.metastore   
org.apache.hadoop.hive.ql.metadata   
org.apache.hadoop.hive.ql.plan   
org.apache.hadoop.hive.serde2   
org.apache.hadoop.hive.serde2.binarysortable   
org.apache.hadoop.hive.serde2.columnar   
org.apache.hadoop.hive.serde2.dynamic_type   
org.apache.hadoop.hive.serde2.lazy   
org.apache.hadoop.hive.serde2.lazybinary   
org.apache.hadoop.hive.serde2.thrift   
 

Uses of Deserializer in org.apache.hadoop.hive.metastore
 

Methods in org.apache.hadoop.hive.metastore that return Deserializer
static Deserializer MetaStoreUtils.getDeserializer(org.apache.hadoop.conf.Configuration conf, Properties schema)
          getDeserializer Get the Deserializer for a table given its name and properties.
static Deserializer MetaStoreUtils.getDeserializer(org.apache.hadoop.conf.Configuration conf, Table table)
          getDeserializer Get the Deserializer for a table.
 

Methods in org.apache.hadoop.hive.metastore with parameters of type Deserializer
static List<FieldSchema> MetaStoreUtils.getFieldsFromDeserializer(String tableName, Deserializer deserializer)
           
 

Uses of Deserializer in org.apache.hadoop.hive.ql.metadata
 

Methods in org.apache.hadoop.hive.ql.metadata that return Deserializer
 Deserializer Table.getDeserializer()
           
 

Methods in org.apache.hadoop.hive.ql.metadata with parameters of type Deserializer
static List<FieldSchema> Hive.getFieldsFromDeserializer(String name, Deserializer serde)
           
 void Table.setDeserializer(Deserializer deserializer)
           
 

Constructors in org.apache.hadoop.hive.ql.metadata with parameters of type Deserializer
Table(String name, Properties schema, Deserializer deserializer, Class<? extends org.apache.hadoop.mapred.InputFormat<?,?>> inputFormatClass, Class<?> outputFormatClass, URI dataLocation, Hive hive)
          Table Create a TableMetaInfo object presumably with the intent of saving it to the metastore
 

Uses of Deserializer in org.apache.hadoop.hive.ql.plan
 

Methods in org.apache.hadoop.hive.ql.plan that return Deserializer
 Deserializer tableDesc.getDeserializer()
          Return a deserializer object corresponding to the tableDesc
 

Methods in org.apache.hadoop.hive.ql.plan that return types with arguments of type Deserializer
 Class<? extends Deserializer> tableDesc.getDeserializerClass()
           
 

Method parameters in org.apache.hadoop.hive.ql.plan with type arguments of type Deserializer
static tableDesc PlanUtils.getTableDesc(Class<? extends Deserializer> serdeClass, String separatorCode, String columns)
          Generate the table descriptor of given serde with the separatorCode and column names (comma separated string).
static tableDesc PlanUtils.getTableDesc(Class<? extends Deserializer> serdeClass, String separatorCode, String columns, boolean lastColumnTakesRestOfTheLine)
          Generate the table descriptor of the serde specified with the separatorCode and column names (comma separated string), and whether the last column should take the rest of the line.
static tableDesc PlanUtils.getTableDesc(Class<? extends Deserializer> serdeClass, String separatorCode, String columns, String columnTypes, boolean lastColumnTakesRestOfTheLine)
           
 void tableDesc.setDeserializerClass(Class<? extends Deserializer> serdeClass)
           
 

Constructor parameters in org.apache.hadoop.hive.ql.plan with type arguments of type Deserializer
tableDesc(Class<? extends Deserializer> serdeClass, Class<? extends org.apache.hadoop.mapred.InputFormat> inputFileFormatClass, Class<?> class1, Properties properties)
           
 

Uses of Deserializer in org.apache.hadoop.hive.serde2
 

Subinterfaces of Deserializer in org.apache.hadoop.hive.serde2
 interface SerDe
          A union of HiveDeserializer and HiveSerializer interface.
 

Classes in org.apache.hadoop.hive.serde2 that implement Deserializer
 class ByteStreamTypedSerDe
           
 class MetadataTypedColumnsetSerDe
           
 class TypedSerDe
           
 

Methods in org.apache.hadoop.hive.serde2 that return Deserializer
static Deserializer SerDeUtils.lookupDeserializer(String name)
           
 

Uses of Deserializer in org.apache.hadoop.hive.serde2.binarysortable
 

Classes in org.apache.hadoop.hive.serde2.binarysortable that implement Deserializer
 class BinarySortableSerDe
          BinarySortableSerDe can be used to write data in a way that the data can be compared byte-by-byte with the same order.
 

Uses of Deserializer in org.apache.hadoop.hive.serde2.columnar
 

Classes in org.apache.hadoop.hive.serde2.columnar that implement Deserializer
 class ColumnarSerDe
          ColumnarSerDe is used for columnar based storage supported by RCFile.
 

Uses of Deserializer in org.apache.hadoop.hive.serde2.dynamic_type
 

Classes in org.apache.hadoop.hive.serde2.dynamic_type that implement Deserializer
 class DynamicSerDe
           
 

Uses of Deserializer in org.apache.hadoop.hive.serde2.lazy
 

Classes in org.apache.hadoop.hive.serde2.lazy that implement Deserializer
 class LazySimpleSerDe
          LazySimpleSerDe can be used to read the same data format as MetadataTypedColumnsetSerDe and TCTLSeparatedProtocol.
 

Uses of Deserializer in org.apache.hadoop.hive.serde2.lazybinary
 

Classes in org.apache.hadoop.hive.serde2.lazybinary that implement Deserializer
 class LazyBinarySerDe
          The LazyBinarySerDe class combines the lazy property of LazySimpleSerDe class and the binary property of BinarySortable class.
 

Uses of Deserializer in org.apache.hadoop.hive.serde2.thrift
 

Classes in org.apache.hadoop.hive.serde2.thrift that implement Deserializer
 class ThriftByteStreamTypedSerDe
           
 class ThriftDeserializer
           
 



Copyright © 2009 The Apache Software Foundation