org.apache.hadoop.hive.serde2.objectinspector.primitive
Interface SettableIntObjectInspector
- All Superinterfaces:
- IntObjectInspector, ObjectInspector, PrimitiveObjectInspector
- All Known Implementing Classes:
- JavaIntObjectInspector, WritableIntObjectInspector
public interface SettableIntObjectInspector
- extends IntObjectInspector
A SettableIntObjectInspector can set an int value to an object.
Method Summary |
Object |
create(int value)
Create an object with the value. |
Object |
set(Object o,
int value)
Set the object with the value. |
Methods inherited from interface org.apache.hadoop.hive.serde2.objectinspector.primitive.IntObjectInspector |
get |
set
Object set(Object o,
int 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(int value)
- Create an object with the value.
Copyright © 2009 The Apache Software Foundation