Package org.apache.ignite.binary
Interface BinaryField
- 
 public interface BinaryFieldBinary object field. Can be used to speed object field lookup.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanexists(BinaryObject obj)Check whether field exists in the object.Stringname()Get field's name.<T> Tvalue(BinaryObject obj)Get field's value from the given object.
 
- 
- 
- 
Method Detail- 
nameString name() Get field's name.- Returns:
- Name.
 
 - 
existsboolean exists(BinaryObject obj) Check whether field exists in the object.- Parameters:
- obj- Object.
- Returns:
- Trueif exists.
 
 - 
value<T> T value(BinaryObject obj) Get field's value from the given object.- Type Parameters:
- T- Type of the field value.
- Parameters:
- obj- Object.
- Returns:
- Value.
 
 
- 
 
-