org.apache.hadoop.hive.serde2.objectinspector.primitive
Interface SettableByteObjectInspector
- All Superinterfaces:
- ByteObjectInspector, Cloneable, ObjectInspector, PrimitiveObjectInspector
- All Known Implementing Classes:
- JavaByteObjectInspector, WritableByteObjectInspector, WritableConstantByteObjectInspector
public interface SettableByteObjectInspector
- extends ByteObjectInspector
A SettableByteObjectInspector can set a byte value to an object.
Method Summary |
Object |
create(byte value)
Create an object with the value. |
Object |
set(Object o,
byte value)
Set the object with the value. |
Methods inherited from interface org.apache.hadoop.hive.serde2.objectinspector.primitive.ByteObjectInspector |
get |
set
Object set(Object o,
byte 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(byte value)
- Create an object with the value.
Copyright © 2011 The Apache Software Foundation