org.apache.hadoop.hive.serde2.objectinspector.primitive
Interface SettableBooleanObjectInspector

All Superinterfaces:
BooleanObjectInspector, ObjectInspector, PrimitiveObjectInspector
All Known Implementing Classes:
JavaBooleanObjectInspector, WritableBooleanObjectInspector

public interface SettableBooleanObjectInspector
extends BooleanObjectInspector

A SettableBooleanObjectInspector can set a boolean value to an object.


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.apache.hadoop.hive.serde2.objectinspector.PrimitiveObjectInspector
PrimitiveObjectInspector.PrimitiveCategory
 
Nested classes/interfaces inherited from interface org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector
ObjectInspector.Category
 
Method Summary
 Object create(boolean value)
          Create an object with the value.
 Object set(Object o, boolean value)
          Set the object with the value.
 
Methods inherited from interface org.apache.hadoop.hive.serde2.objectinspector.primitive.BooleanObjectInspector
get
 
Methods inherited from interface org.apache.hadoop.hive.serde2.objectinspector.PrimitiveObjectInspector
copyObject, getJavaPrimitiveClass, getPrimitiveCategory, getPrimitiveJavaObject, getPrimitiveWritableClass, getPrimitiveWritableObject, preferWritable
 
Methods inherited from interface org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector
getCategory, getTypeName
 

Method Detail

set

Object set(Object o,
           boolean value)
Set the object with the value. Return the object that has the new value. In most cases the returned value should be the same as o, but in case o is unmodifiable, this will return a new object with new value.


create

Object create(boolean value)
Create an object with the value.



Copyright © 2009 The Apache Software Foundation