public static enum RowBundle.Action extends java.lang.Enum<RowBundle.Action>
| Enum Constant and Description | 
|---|
READ_ONCE
Read field from  
RowWithGetters provided by GetterBasedSchemaProvider.toRowFunction(TypeDescriptor). | 
READ_REPEATED
Repeatedly (3x) read field from  
RowWithGetters provided by GetterBasedSchemaProvider.toRowFunction(TypeDescriptor). | 
WRITE
Write field to object using  
GetterBasedSchemaProvider.fromRowFunction(TypeDescriptor). | 
| Modifier and Type | Method and Description | 
|---|---|
static RowBundle.Action | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static RowBundle.Action[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final RowBundle.Action WRITE
GetterBasedSchemaProvider.fromRowFunction(TypeDescriptor).
 Use RowWithStorage to bypass optimizations in RowWithGetters for writes.
public static final RowBundle.Action READ_ONCE
RowWithGetters provided by GetterBasedSchemaProvider.toRowFunction(TypeDescriptor).public static final RowBundle.Action READ_REPEATED
RowWithGetters provided by GetterBasedSchemaProvider.toRowFunction(TypeDescriptor).public static RowBundle.Action[] values()
for (RowBundle.Action c : RowBundle.Action.values()) System.out.println(c);
public static RowBundle.Action valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null