mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
added reuse option for root objects
getRootAs..() function now has a second implementation that accepts an existing object to allow object reuse, much like all other methods that refer to objects. Change-Id: Iffef567c903a130761ef7de98867e5465d29a04d
This commit is contained in:
committed by
Wouter van Oortmerssen
parent
4d3db99283
commit
b0910e75e0
@@ -8,7 +8,8 @@ import java.util.*;
|
||||
import com.google.flatbuffers.*;
|
||||
|
||||
public class Stat extends Table {
|
||||
public static Stat getRootAsStat(ByteBuffer _bb) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (new Stat()).__init(_bb.getInt(_bb.position()) + _bb.position(), _bb); }
|
||||
public static Stat getRootAsStat(ByteBuffer _bb) { return getRootAsStat(_bb, new Stat()); }
|
||||
public static Stat getRootAsStat(ByteBuffer _bb, Stat obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__init(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
|
||||
public Stat __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; return this; }
|
||||
|
||||
public String id() { int o = __offset(4); return o != 0 ? __string(o + bb_pos) : null; }
|
||||
|
||||
Reference in New Issue
Block a user