Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
org.jooq.tools |
The
org.jooq.tools package contains jOOQ's public utilities. |
org.jooq.util.cubrid |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.CUBRID dialect. |
org.jooq.util.mariadb |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.MARIADB dialect. |
org.jooq.util.mysql |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.MYSQL dialect. |
org.jooq.util.oracle |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.ORACLE dialect. |
org.jooq.util.postgres |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.POSTGRES dialect. |
org.jooq.util.sqlite |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.SQLITE dialect. |
org.jooq.util.sqlserver |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.SQLSERVER dialect family. |
Modifier and Type | Interface and Description |
---|---|
interface |
AggregateFilterStep<T>
The step in the specification of aggregate functions where the SQL:2003
standard
FILTER clause can be added. |
interface |
AggregateFunction<T>
An aggregate function is a special field that is usually used in a
GROUP BY context. |
interface |
ArrayAggOrderByStep<T>
The SQL standard
ARRAY_AGG() function. |
interface |
CaseConditionStep<T>
The final step in creating a case statement of the type
CASE WHEN x < 1 THEN 'one'
WHEN x >= 2 THEN 'two'
ELSE 'three'
END
|
interface |
CaseWhenStep<V,T>
The final step in creating a case statement of the type
CASE x WHEN 1 THEN 'one'
WHEN 2 THEN 'two'
ELSE 'three'
END
|
interface |
GroupConcatOrderByStep
MySQL's
GROUP_CONCAT function. |
interface |
GroupConcatSeparatorStep
MySQL's
GROUP_CONCAT function. |
interface |
Param<T>
A named parameter and/or bind value.
|
interface |
TableField<R extends Record,T>
A field contained in a table
|
interface |
UDTField<R extends UDTRecord<R>,T>
A field contained in a UDT
|
interface |
WindowBeforeOverStep<T>
This type is used for the window function DSL API.
|
interface |
WindowFinalStep<T>
This type is used for the window function DSL API.
|
interface |
WindowOrderByStep<T>
This type is used for the window function DSL API.
|
interface |
WindowPartitionByStep<T>
This type is used for the window function DSL API.
|
interface |
WindowRowsStep<T>
This type is used for the window function DSL API.
|
Modifier and Type | Method and Description |
---|---|
Field<T> |
Field.abs()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.acos()
This method is part of the pre-2.0 API.
|
Field<T> |
Field.add(Field<?> value)
An arithmetic expression to add value to this.
|
Field<T> |
Field.add(Number value)
An arithmetic expression adding this to value.
|
Field<T> |
Field.as(Field<?> otherField)
Create an alias for this field based on another field's name.
|
Field<T> |
Field.as(String alias)
Create an alias for this field.
|
Field<Integer> |
Field.ascii()
This method is part of the pre-2.0 API.
|
<T> Field<T> |
FieldLike.asField()
The underlying field representation of this object
This method is useful for things like
SELECT y.*, (SELECT a FROM x) FROM y |
<T> Field<T> |
FieldLike.asField(String alias)
The underlying field representation of this object
This method is useful for things like
SELECT y.*, (SELECT a FROM x) [alias] FROM y
Note that the case-sensitivity of the returned field depends on
Settings.getRenderNameStyle() . |
Field<BigDecimal> |
Field.asin()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.atan()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.atan2(Field<? extends Number> y)
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.atan2(Number y)
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.avg()
This method is part of the pre-2.0 API.
|
Field<T> |
Field.bitAnd(Field<T> value)
The bitwise and operator.
|
Field<T> |
Field.bitAnd(T value)
The bitwise and operator.
|
Field<Integer> |
Field.bitLength()
This method is part of the pre-2.0 API.
|
Field<T> |
Field.bitNand(Field<T> value)
The bitwise not and operator.
|
Field<T> |
Field.bitNand(T value)
The bitwise not and operator.
|
Field<T> |
Field.bitNor(Field<T> value)
The bitwise not or operator.
|
Field<T> |
Field.bitNor(T value)
The bitwise not or operator.
|
Field<T> |
Field.bitNot()
The bitwise not operator.
|
Field<T> |
Field.bitOr(Field<T> value)
The bitwise or operator.
|
Field<T> |
Field.bitOr(T value)
The bitwise or operator.
|
Field<T> |
Field.bitXNor(Field<T> value)
The bitwise not xor operator.
|
Field<T> |
Field.bitXNor(T value)
The bitwise not xor operator.
|
Field<T> |
Field.bitXor(Field<T> value)
The bitwise xor operator.
|
Field<T> |
Field.bitXor(T value)
The bitwise xor operator.
|
<Z> Field<Z> |
Field.cast(Class<Z> type)
Cast this field to another type.
|
<Z> Field<Z> |
Field.cast(DataType<Z> type)
Cast this field to a dialect-specific data type.
|
<Z> Field<Z> |
Field.cast(Field<Z> field)
Cast this field to the type of another field.
|
Field<T> |
Field.ceil()
This method is part of the pre-2.0 API.
|
Field<Integer> |
Field.charLength()
This method is part of the pre-2.0 API.
|
Field<T> |
Field.coalesce(Field<T> option,
Field<?>... options)
This method is part of the pre-2.0 API.
|
Field<T> |
Field.coalesce(T option,
T... options)
This method is part of the pre-2.0 API.
|
<Z> Field<Z> |
Field.coerce(Class<Z> type)
Coerce this field to another type.
|
<Z> Field<Z> |
Field.coerce(DataType<Z> type)
Coerce this field to a dialect-specific data type.
|
<Z> Field<Z> |
Field.coerce(Field<Z> field)
Coerce this field to the type of another field.
|
Field<String> |
Field.concat(Field<?>... fields)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.concat(String... values)
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.cos()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.cosh()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.cot()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.coth()
This method is part of the pre-2.0 API.
|
Field<Integer> |
Field.count()
This method is part of the pre-2.0 API.
|
Field<Integer> |
Field.countDistinct()
This method is part of the pre-2.0 API.
|
Field<T> |
Sequence.currval()
Get the current value of this sequence
|
<Z> Field<Z> |
Field.decode(Field<T> search,
Field<Z> result)
This method is part of the pre-2.0 API.
|
<Z> Field<Z> |
Field.decode(Field<T> search,
Field<Z> result,
Field<?>... more)
This method is part of the pre-2.0 API.
|
<Z> Field<Z> |
Field.decode(T search,
Z result)
This method is part of the pre-2.0 API.
|
<Z> Field<Z> |
Field.decode(T search,
Z result,
Object... more)
This method is part of the pre-2.0 API.
|
Field<T> |
DataType.defaultValue()
The expression to be applied as the
DEFAULT value for this
data type. |
Field<BigDecimal> |
Field.deg()
This method is part of the pre-2.0 API.
|
Field<T> |
Field.div(Field<? extends Number> value)
An arithmetic expression dividing this by value.
|
Field<T> |
Field.div(Number value)
An arithmetic expression dividing this by value.
|
Field<T> |
Field.divide(Field<? extends Number> value)
An alias for
div(Field) . |
Field<T> |
Field.divide(Number value)
An alias for
div(Number) . |
Field<BigDecimal> |
Field.exp()
This method is part of the pre-2.0 API.
|
Field<Integer> |
Field.extract(DatePart datePart)
This method is part of the pre-2.0 API.
|
Field<?> |
LoaderFieldMapper.LoaderFieldContext.field()
The
Field of the source data to be mapped. |
<T> Field<T> |
UDT.field(Field<T> field)
Get a specific field from this UDT.
|
<T> Field<T> |
TableLike.field(Field<T> field)
Get a specific field from this table.
|
<T> Field<T> |
Row.field(Field<T> field)
Get a specific field from this row.
|
<T> Field<T> |
Result.field(Field<T> field)
Get a specific field from this Result.
|
<T> Field<T> |
RecordType.field(Field<T> field)
Get a specific field from this record type.
|
<T> Field<T> |
Record.field(Field<T> field)
Get a specific field from this Record.
|
<T> Field<T> |
Cursor.field(Field<T> field)
Get a specific field from this Cursor.
|
Field<?> |
UDT.field(int index)
Get a specific field from this UDT.
|
Field<?> |
TableLike.field(int index)
Get a specific field from this table.
|
Field<?> |
Row.field(int fieldIndex)
Get a specific field from this row.
|
Field<?> |
Result.field(int index)
Get a specific field from this Result.
|
Field<?> |
RecordType.field(int fieldIndex)
Get a specific field from this record type.
|
Field<?> |
Record.field(int index)
Get a specific field from this Record.
|
Field<?> |
Cursor.field(int index)
Get a specific field from this Cursor.
|
<T> Field<T> |
TableLike.field(int index,
Class<T> type)
Get a specific field from this table and coerce it to
type . |
<T> Field<T> |
Row.field(int fieldIndex,
Class<T> type)
Get a specific field from this row and coerce it to
type . |
<T> Field<T> |
Result.field(int index,
Class<T> type)
Get a specific field from this Result, coerced to
type . |
<T> Field<T> |
RecordType.field(int fieldIndex,
Class<T> type)
Get a specific field from this record type coerced to
type . |
<T> Field<T> |
TableLike.field(int index,
DataType<T> dataType)
Get a specific field from this table and coerce it to
dataType . |
<T> Field<T> |
Row.field(int fieldIndex,
DataType<T> dataType)
Get a specific field from this row and coerce it to
dataType . |
<T> Field<T> |
Result.field(int index,
DataType<T> dataType)
Get a specific field from this Result, coerced to
dataType . |
<T> Field<T> |
RecordType.field(int fieldIndex,
DataType<T> dataType)
Get a specific field from this record type coerced to
dataType . |
Field<?> |
UDT.field(Name name)
Get a specific field from this UDT.
|
Field<?> |
TableLike.field(Name name)
Get a specific field from this table.
|
Field<?> |
Row.field(Name fieldName)
Get a specific field from this row.
|
Field<?> |
Result.field(Name name)
Get a specific field from this Result.
|
Field<?> |
RecordType.field(Name fieldName)
Get a specific qualified field from this record type.
|
Field<?> |
Record.field(Name name)
Get a specific qualified field from this Record.
|
Field<?> |
Cursor.field(Name name)
Get a specific qualified field from this Cursor.
|
<T> Field<T> |
TableLike.field(Name name,
Class<T> type)
Get a specific field from this table and coerce it to
type . |
<T> Field<T> |
Row.field(Name fieldName,
Class<T> type)
Get a specific field from this row and coerce it to
type . |
<T> Field<T> |
Result.field(Name name,
Class<T> type)
Get a specific field from this Result, coerced to
type . |
<T> Field<T> |
RecordType.field(Name fieldName,
Class<T> type)
Get a specific field from this record type coerced to
type . |
<T> Field<T> |
TableLike.field(Name name,
DataType<T> dataType)
Get a specific field from this table and coerce it to
dataType . |
<T> Field<T> |
Row.field(Name fieldName,
DataType<T> dataType)
Get a specific field from this row and coerce it to
dataType . |
<T> Field<T> |
Result.field(Name name,
DataType<T> dataType)
Get a specific field from this Result, coerced to
dataType . |
<T> Field<T> |
RecordType.field(Name fieldName,
DataType<T> dataType)
Get a specific field from this record type coerced to
dataType . |
Field<?> |
UDT.field(String name)
Get a specific field from this UDT.
|
Field<?> |
TableLike.field(String name)
Get a specific field from this table.
|
Field<?> |
Row.field(String fieldName)
Get a specific field from this row.
|
Field<?> |
Result.field(String name)
Get a specific field from this Result.
|
Field<?> |
RecordType.field(String fieldName)
Get a specific field from this record type.
|
Field<?> |
Record.field(String name)
Get a specific field from this Record.
|
Field<?> |
Cursor.field(String name)
Get a specific field from this Cursor.
|
<T> Field<T> |
TableLike.field(String name,
Class<T> type)
Get a specific field from this table and coerce it to
type . |
<T> Field<T> |
Row.field(String fieldName,
Class<T> type)
Get a specific field from this row and coerce it to
type . |
<T> Field<T> |
Result.field(String name,
Class<T> type)
Get a specific field from this Result, coerced to
type . |
<T> Field<T> |
RecordType.field(String fieldName,
Class<T> type)
Get a specific field from this record type coerced to
type . |
<T> Field<T> |
TableLike.field(String name,
DataType<T> dataType)
Get a specific field from this table and coerce it to
dataType . |
<T> Field<T> |
Row.field(String fieldName,
DataType<T> dataType)
Get a specific field from this row and coerce it to
dataType . |
<T> Field<T> |
Result.field(String name,
DataType<T> dataType)
Get a specific field from this Result, coerced to
dataType . |
<T> Field<T> |
RecordType.field(String fieldName,
DataType<T> dataType)
Get a specific field from this record type coerced to
dataType . |
Field<T1> |
Row9.field1()
Get the first field.
|
Field<T1> |
Row8.field1()
Get the first field.
|
Field<T1> |
Row7.field1()
Get the first field.
|
Field<T1> |
Row6.field1()
Get the first field.
|
Field<T1> |
Row5.field1()
Get the first field.
|
Field<T1> |
Row4.field1()
Get the first field.
|
Field<T1> |
Row3.field1()
Get the first field.
|
Field<T1> |
Row22.field1()
Get the first field.
|
Field<T1> |
Row21.field1()
Get the first field.
|
Field<T1> |
Row20.field1()
Get the first field.
|
Field<T1> |
Row2.field1()
Get the first field.
|
Field<T1> |
Row19.field1()
Get the first field.
|
Field<T1> |
Row18.field1()
Get the first field.
|
Field<T1> |
Row17.field1()
Get the first field.
|
Field<T1> |
Row16.field1()
Get the first field.
|
Field<T1> |
Row15.field1()
Get the first field.
|
Field<T1> |
Row14.field1()
Get the first field.
|
Field<T1> |
Row13.field1()
Get the first field.
|
Field<T1> |
Row12.field1()
Get the first field.
|
Field<T1> |
Row11.field1()
Get the first field.
|
Field<T1> |
Row10.field1()
Get the first field.
|
Field<T1> |
Row1.field1()
Get the first field.
|
Field<T1> |
Record9.field1()
Get the first field.
|
Field<T1> |
Record8.field1()
Get the first field.
|
Field<T1> |
Record7.field1()
Get the first field.
|
Field<T1> |
Record6.field1()
Get the first field.
|
Field<T1> |
Record5.field1()
Get the first field.
|
Field<T1> |
Record4.field1()
Get the first field.
|
Field<T1> |
Record3.field1()
Get the first field.
|
Field<T1> |
Record22.field1()
Get the first field.
|
Field<T1> |
Record21.field1()
Get the first field.
|
Field<T1> |
Record20.field1()
Get the first field.
|
Field<T1> |
Record2.field1()
Get the first field.
|
Field<T1> |
Record19.field1()
Get the first field.
|
Field<T1> |
Record18.field1()
Get the first field.
|
Field<T1> |
Record17.field1()
Get the first field.
|
Field<T1> |
Record16.field1()
Get the first field.
|
Field<T1> |
Record15.field1()
Get the first field.
|
Field<T1> |
Record14.field1()
Get the first field.
|
Field<T1> |
Record13.field1()
Get the first field.
|
Field<T1> |
Record12.field1()
Get the first field.
|
Field<T1> |
Record11.field1()
Get the first field.
|
Field<T1> |
Record10.field1()
Get the first field.
|
Field<T1> |
Record1.field1()
Get the first field.
|
Field<T10> |
Row22.field10()
Get the tenth field.
|
Field<T10> |
Row21.field10()
Get the tenth field.
|
Field<T10> |
Row20.field10()
Get the tenth field.
|
Field<T10> |
Row19.field10()
Get the tenth field.
|
Field<T10> |
Row18.field10()
Get the tenth field.
|
Field<T10> |
Row17.field10()
Get the tenth field.
|
Field<T10> |
Row16.field10()
Get the tenth field.
|
Field<T10> |
Row15.field10()
Get the tenth field.
|
Field<T10> |
Row14.field10()
Get the tenth field.
|
Field<T10> |
Row13.field10()
Get the tenth field.
|
Field<T10> |
Row12.field10()
Get the tenth field.
|
Field<T10> |
Row11.field10()
Get the tenth field.
|
Field<T10> |
Row10.field10()
Get the tenth field.
|
Field<T10> |
Record22.field10()
Get the tenth field.
|
Field<T10> |
Record21.field10()
Get the tenth field.
|
Field<T10> |
Record20.field10()
Get the tenth field.
|
Field<T10> |
Record19.field10()
Get the tenth field.
|
Field<T10> |
Record18.field10()
Get the tenth field.
|
Field<T10> |
Record17.field10()
Get the tenth field.
|
Field<T10> |
Record16.field10()
Get the tenth field.
|
Field<T10> |
Record15.field10()
Get the tenth field.
|
Field<T10> |
Record14.field10()
Get the tenth field.
|
Field<T10> |
Record13.field10()
Get the tenth field.
|
Field<T10> |
Record12.field10()
Get the tenth field.
|
Field<T10> |
Record11.field10()
Get the tenth field.
|
Field<T10> |
Record10.field10()
Get the tenth field.
|
Field<T11> |
Row22.field11()
Get the eleventh field.
|
Field<T11> |
Row21.field11()
Get the eleventh field.
|
Field<T11> |
Row20.field11()
Get the eleventh field.
|
Field<T11> |
Row19.field11()
Get the eleventh field.
|
Field<T11> |
Row18.field11()
Get the eleventh field.
|
Field<T11> |
Row17.field11()
Get the eleventh field.
|
Field<T11> |
Row16.field11()
Get the eleventh field.
|
Field<T11> |
Row15.field11()
Get the eleventh field.
|
Field<T11> |
Row14.field11()
Get the eleventh field.
|
Field<T11> |
Row13.field11()
Get the eleventh field.
|
Field<T11> |
Row12.field11()
Get the eleventh field.
|
Field<T11> |
Row11.field11()
Get the eleventh field.
|
Field<T11> |
Record22.field11()
Get the eleventh field.
|
Field<T11> |
Record21.field11()
Get the eleventh field.
|
Field<T11> |
Record20.field11()
Get the eleventh field.
|
Field<T11> |
Record19.field11()
Get the eleventh field.
|
Field<T11> |
Record18.field11()
Get the eleventh field.
|
Field<T11> |
Record17.field11()
Get the eleventh field.
|
Field<T11> |
Record16.field11()
Get the eleventh field.
|
Field<T11> |
Record15.field11()
Get the eleventh field.
|
Field<T11> |
Record14.field11()
Get the eleventh field.
|
Field<T11> |
Record13.field11()
Get the eleventh field.
|
Field<T11> |
Record12.field11()
Get the eleventh field.
|
Field<T11> |
Record11.field11()
Get the eleventh field.
|
Field<T12> |
Row22.field12()
Get the twelfth field.
|
Field<T12> |
Row21.field12()
Get the twelfth field.
|
Field<T12> |
Row20.field12()
Get the twelfth field.
|
Field<T12> |
Row19.field12()
Get the twelfth field.
|
Field<T12> |
Row18.field12()
Get the twelfth field.
|
Field<T12> |
Row17.field12()
Get the twelfth field.
|
Field<T12> |
Row16.field12()
Get the twelfth field.
|
Field<T12> |
Row15.field12()
Get the twelfth field.
|
Field<T12> |
Row14.field12()
Get the twelfth field.
|
Field<T12> |
Row13.field12()
Get the twelfth field.
|
Field<T12> |
Row12.field12()
Get the twelfth field.
|
Field<T12> |
Record22.field12()
Get the twelfth field.
|
Field<T12> |
Record21.field12()
Get the twelfth field.
|
Field<T12> |
Record20.field12()
Get the twelfth field.
|
Field<T12> |
Record19.field12()
Get the twelfth field.
|
Field<T12> |
Record18.field12()
Get the twelfth field.
|
Field<T12> |
Record17.field12()
Get the twelfth field.
|
Field<T12> |
Record16.field12()
Get the twelfth field.
|
Field<T12> |
Record15.field12()
Get the twelfth field.
|
Field<T12> |
Record14.field12()
Get the twelfth field.
|
Field<T12> |
Record13.field12()
Get the twelfth field.
|
Field<T12> |
Record12.field12()
Get the twelfth field.
|
Field<T13> |
Row22.field13()
Get the thirteenth field.
|
Field<T13> |
Row21.field13()
Get the thirteenth field.
|
Field<T13> |
Row20.field13()
Get the thirteenth field.
|
Field<T13> |
Row19.field13()
Get the thirteenth field.
|
Field<T13> |
Row18.field13()
Get the thirteenth field.
|
Field<T13> |
Row17.field13()
Get the thirteenth field.
|
Field<T13> |
Row16.field13()
Get the thirteenth field.
|
Field<T13> |
Row15.field13()
Get the thirteenth field.
|
Field<T13> |
Row14.field13()
Get the thirteenth field.
|
Field<T13> |
Row13.field13()
Get the thirteenth field.
|
Field<T13> |
Record22.field13()
Get the thirteenth field.
|
Field<T13> |
Record21.field13()
Get the thirteenth field.
|
Field<T13> |
Record20.field13()
Get the thirteenth field.
|
Field<T13> |
Record19.field13()
Get the thirteenth field.
|
Field<T13> |
Record18.field13()
Get the thirteenth field.
|
Field<T13> |
Record17.field13()
Get the thirteenth field.
|
Field<T13> |
Record16.field13()
Get the thirteenth field.
|
Field<T13> |
Record15.field13()
Get the thirteenth field.
|
Field<T13> |
Record14.field13()
Get the thirteenth field.
|
Field<T13> |
Record13.field13()
Get the thirteenth field.
|
Field<T14> |
Row22.field14()
Get the fourteenth field.
|
Field<T14> |
Row21.field14()
Get the fourteenth field.
|
Field<T14> |
Row20.field14()
Get the fourteenth field.
|
Field<T14> |
Row19.field14()
Get the fourteenth field.
|
Field<T14> |
Row18.field14()
Get the fourteenth field.
|
Field<T14> |
Row17.field14()
Get the fourteenth field.
|
Field<T14> |
Row16.field14()
Get the fourteenth field.
|
Field<T14> |
Row15.field14()
Get the fourteenth field.
|
Field<T14> |
Row14.field14()
Get the fourteenth field.
|
Field<T14> |
Record22.field14()
Get the fourteenth field.
|
Field<T14> |
Record21.field14()
Get the fourteenth field.
|
Field<T14> |
Record20.field14()
Get the fourteenth field.
|
Field<T14> |
Record19.field14()
Get the fourteenth field.
|
Field<T14> |
Record18.field14()
Get the fourteenth field.
|
Field<T14> |
Record17.field14()
Get the fourteenth field.
|
Field<T14> |
Record16.field14()
Get the fourteenth field.
|
Field<T14> |
Record15.field14()
Get the fourteenth field.
|
Field<T14> |
Record14.field14()
Get the fourteenth field.
|
Field<T15> |
Row22.field15()
Get the fifteenth field.
|
Field<T15> |
Row21.field15()
Get the fifteenth field.
|
Field<T15> |
Row20.field15()
Get the fifteenth field.
|
Field<T15> |
Row19.field15()
Get the fifteenth field.
|
Field<T15> |
Row18.field15()
Get the fifteenth field.
|
Field<T15> |
Row17.field15()
Get the fifteenth field.
|
Field<T15> |
Row16.field15()
Get the fifteenth field.
|
Field<T15> |
Row15.field15()
Get the fifteenth field.
|
Field<T15> |
Record22.field15()
Get the fifteenth field.
|
Field<T15> |
Record21.field15()
Get the fifteenth field.
|
Field<T15> |
Record20.field15()
Get the fifteenth field.
|
Field<T15> |
Record19.field15()
Get the fifteenth field.
|
Field<T15> |
Record18.field15()
Get the fifteenth field.
|
Field<T15> |
Record17.field15()
Get the fifteenth field.
|
Field<T15> |
Record16.field15()
Get the fifteenth field.
|
Field<T15> |
Record15.field15()
Get the fifteenth field.
|
Field<T16> |
Row22.field16()
Get the sixteenth field.
|
Field<T16> |
Row21.field16()
Get the sixteenth field.
|
Field<T16> |
Row20.field16()
Get the sixteenth field.
|
Field<T16> |
Row19.field16()
Get the sixteenth field.
|
Field<T16> |
Row18.field16()
Get the sixteenth field.
|
Field<T16> |
Row17.field16()
Get the sixteenth field.
|
Field<T16> |
Row16.field16()
Get the sixteenth field.
|
Field<T16> |
Record22.field16()
Get the sixteenth field.
|
Field<T16> |
Record21.field16()
Get the sixteenth field.
|
Field<T16> |
Record20.field16()
Get the sixteenth field.
|
Field<T16> |
Record19.field16()
Get the sixteenth field.
|
Field<T16> |
Record18.field16()
Get the sixteenth field.
|
Field<T16> |
Record17.field16()
Get the sixteenth field.
|
Field<T16> |
Record16.field16()
Get the sixteenth field.
|
Field<T17> |
Row22.field17()
Get the seventeenth field.
|
Field<T17> |
Row21.field17()
Get the seventeenth field.
|
Field<T17> |
Row20.field17()
Get the seventeenth field.
|
Field<T17> |
Row19.field17()
Get the seventeenth field.
|
Field<T17> |
Row18.field17()
Get the seventeenth field.
|
Field<T17> |
Row17.field17()
Get the seventeenth field.
|
Field<T17> |
Record22.field17()
Get the seventeenth field.
|
Field<T17> |
Record21.field17()
Get the seventeenth field.
|
Field<T17> |
Record20.field17()
Get the seventeenth field.
|
Field<T17> |
Record19.field17()
Get the seventeenth field.
|
Field<T17> |
Record18.field17()
Get the seventeenth field.
|
Field<T17> |
Record17.field17()
Get the seventeenth field.
|
Field<T18> |
Row22.field18()
Get the eighteenth field.
|
Field<T18> |
Row21.field18()
Get the eighteenth field.
|
Field<T18> |
Row20.field18()
Get the eighteenth field.
|
Field<T18> |
Row19.field18()
Get the eighteenth field.
|
Field<T18> |
Row18.field18()
Get the eighteenth field.
|
Field<T18> |
Record22.field18()
Get the eighteenth field.
|
Field<T18> |
Record21.field18()
Get the eighteenth field.
|
Field<T18> |
Record20.field18()
Get the eighteenth field.
|
Field<T18> |
Record19.field18()
Get the eighteenth field.
|
Field<T18> |
Record18.field18()
Get the eighteenth field.
|
Field<T19> |
Row22.field19()
Get the ninteenth field.
|
Field<T19> |
Row21.field19()
Get the ninteenth field.
|
Field<T19> |
Row20.field19()
Get the ninteenth field.
|
Field<T19> |
Row19.field19()
Get the ninteenth field.
|
Field<T19> |
Record22.field19()
Get the ninteenth field.
|
Field<T19> |
Record21.field19()
Get the ninteenth field.
|
Field<T19> |
Record20.field19()
Get the ninteenth field.
|
Field<T19> |
Record19.field19()
Get the ninteenth field.
|
Field<T2> |
Row9.field2()
Get the second field.
|
Field<T2> |
Row8.field2()
Get the second field.
|
Field<T2> |
Row7.field2()
Get the second field.
|
Field<T2> |
Row6.field2()
Get the second field.
|
Field<T2> |
Row5.field2()
Get the second field.
|
Field<T2> |
Row4.field2()
Get the second field.
|
Field<T2> |
Row3.field2()
Get the second field.
|
Field<T2> |
Row22.field2()
Get the second field.
|
Field<T2> |
Row21.field2()
Get the second field.
|
Field<T2> |
Row20.field2()
Get the second field.
|
Field<T2> |
Row2.field2()
Get the second field.
|
Field<T2> |
Row19.field2()
Get the second field.
|
Field<T2> |
Row18.field2()
Get the second field.
|
Field<T2> |
Row17.field2()
Get the second field.
|
Field<T2> |
Row16.field2()
Get the second field.
|
Field<T2> |
Row15.field2()
Get the second field.
|
Field<T2> |
Row14.field2()
Get the second field.
|
Field<T2> |
Row13.field2()
Get the second field.
|
Field<T2> |
Row12.field2()
Get the second field.
|
Field<T2> |
Row11.field2()
Get the second field.
|
Field<T2> |
Row10.field2()
Get the second field.
|
Field<T2> |
Record9.field2()
Get the second field.
|
Field<T2> |
Record8.field2()
Get the second field.
|
Field<T2> |
Record7.field2()
Get the second field.
|
Field<T2> |
Record6.field2()
Get the second field.
|
Field<T2> |
Record5.field2()
Get the second field.
|
Field<T2> |
Record4.field2()
Get the second field.
|
Field<T2> |
Record3.field2()
Get the second field.
|
Field<T2> |
Record22.field2()
Get the second field.
|
Field<T2> |
Record21.field2()
Get the second field.
|
Field<T2> |
Record20.field2()
Get the second field.
|
Field<T2> |
Record2.field2()
Get the second field.
|
Field<T2> |
Record19.field2()
Get the second field.
|
Field<T2> |
Record18.field2()
Get the second field.
|
Field<T2> |
Record17.field2()
Get the second field.
|
Field<T2> |
Record16.field2()
Get the second field.
|
Field<T2> |
Record15.field2()
Get the second field.
|
Field<T2> |
Record14.field2()
Get the second field.
|
Field<T2> |
Record13.field2()
Get the second field.
|
Field<T2> |
Record12.field2()
Get the second field.
|
Field<T2> |
Record11.field2()
Get the second field.
|
Field<T2> |
Record10.field2()
Get the second field.
|
Field<T20> |
Row22.field20()
Get the twentieth field.
|
Field<T20> |
Row21.field20()
Get the twentieth field.
|
Field<T20> |
Row20.field20()
Get the twentieth field.
|
Field<T20> |
Record22.field20()
Get the twentieth field.
|
Field<T20> |
Record21.field20()
Get the twentieth field.
|
Field<T20> |
Record20.field20()
Get the twentieth field.
|
Field<T21> |
Row22.field21()
Get the twenty-first field.
|
Field<T21> |
Row21.field21()
Get the twenty-first field.
|
Field<T21> |
Record22.field21()
Get the twenty-first field.
|
Field<T21> |
Record21.field21()
Get the twenty-first field.
|
Field<T22> |
Row22.field22()
Get the twenty-second field.
|
Field<T22> |
Record22.field22()
Get the twenty-second field.
|
Field<T3> |
Row9.field3()
Get the third field.
|
Field<T3> |
Row8.field3()
Get the third field.
|
Field<T3> |
Row7.field3()
Get the third field.
|
Field<T3> |
Row6.field3()
Get the third field.
|
Field<T3> |
Row5.field3()
Get the third field.
|
Field<T3> |
Row4.field3()
Get the third field.
|
Field<T3> |
Row3.field3()
Get the third field.
|
Field<T3> |
Row22.field3()
Get the third field.
|
Field<T3> |
Row21.field3()
Get the third field.
|
Field<T3> |
Row20.field3()
Get the third field.
|
Field<T3> |
Row19.field3()
Get the third field.
|
Field<T3> |
Row18.field3()
Get the third field.
|
Field<T3> |
Row17.field3()
Get the third field.
|
Field<T3> |
Row16.field3()
Get the third field.
|
Field<T3> |
Row15.field3()
Get the third field.
|
Field<T3> |
Row14.field3()
Get the third field.
|
Field<T3> |
Row13.field3()
Get the third field.
|
Field<T3> |
Row12.field3()
Get the third field.
|
Field<T3> |
Row11.field3()
Get the third field.
|
Field<T3> |
Row10.field3()
Get the third field.
|
Field<T3> |
Record9.field3()
Get the third field.
|
Field<T3> |
Record8.field3()
Get the third field.
|
Field<T3> |
Record7.field3()
Get the third field.
|
Field<T3> |
Record6.field3()
Get the third field.
|
Field<T3> |
Record5.field3()
Get the third field.
|
Field<T3> |
Record4.field3()
Get the third field.
|
Field<T3> |
Record3.field3()
Get the third field.
|
Field<T3> |
Record22.field3()
Get the third field.
|
Field<T3> |
Record21.field3()
Get the third field.
|
Field<T3> |
Record20.field3()
Get the third field.
|
Field<T3> |
Record19.field3()
Get the third field.
|
Field<T3> |
Record18.field3()
Get the third field.
|
Field<T3> |
Record17.field3()
Get the third field.
|
Field<T3> |
Record16.field3()
Get the third field.
|
Field<T3> |
Record15.field3()
Get the third field.
|
Field<T3> |
Record14.field3()
Get the third field.
|
Field<T3> |
Record13.field3()
Get the third field.
|
Field<T3> |
Record12.field3()
Get the third field.
|
Field<T3> |
Record11.field3()
Get the third field.
|
Field<T3> |
Record10.field3()
Get the third field.
|
Field<T4> |
Row9.field4()
Get the fourth field.
|
Field<T4> |
Row8.field4()
Get the fourth field.
|
Field<T4> |
Row7.field4()
Get the fourth field.
|
Field<T4> |
Row6.field4()
Get the fourth field.
|
Field<T4> |
Row5.field4()
Get the fourth field.
|
Field<T4> |
Row4.field4()
Get the fourth field.
|
Field<T4> |
Row22.field4()
Get the fourth field.
|
Field<T4> |
Row21.field4()
Get the fourth field.
|
Field<T4> |
Row20.field4()
Get the fourth field.
|
Field<T4> |
Row19.field4()
Get the fourth field.
|
Field<T4> |
Row18.field4()
Get the fourth field.
|
Field<T4> |
Row17.field4()
Get the fourth field.
|
Field<T4> |
Row16.field4()
Get the fourth field.
|
Field<T4> |
Row15.field4()
Get the fourth field.
|
Field<T4> |
Row14.field4()
Get the fourth field.
|
Field<T4> |
Row13.field4()
Get the fourth field.
|
Field<T4> |
Row12.field4()
Get the fourth field.
|
Field<T4> |
Row11.field4()
Get the fourth field.
|
Field<T4> |
Row10.field4()
Get the fourth field.
|
Field<T4> |
Record9.field4()
Get the fourth field.
|
Field<T4> |
Record8.field4()
Get the fourth field.
|
Field<T4> |
Record7.field4()
Get the fourth field.
|
Field<T4> |
Record6.field4()
Get the fourth field.
|
Field<T4> |
Record5.field4()
Get the fourth field.
|
Field<T4> |
Record4.field4()
Get the fourth field.
|
Field<T4> |
Record22.field4()
Get the fourth field.
|
Field<T4> |
Record21.field4()
Get the fourth field.
|
Field<T4> |
Record20.field4()
Get the fourth field.
|
Field<T4> |
Record19.field4()
Get the fourth field.
|
Field<T4> |
Record18.field4()
Get the fourth field.
|
Field<T4> |
Record17.field4()
Get the fourth field.
|
Field<T4> |
Record16.field4()
Get the fourth field.
|
Field<T4> |
Record15.field4()
Get the fourth field.
|
Field<T4> |
Record14.field4()
Get the fourth field.
|
Field<T4> |
Record13.field4()
Get the fourth field.
|
Field<T4> |
Record12.field4()
Get the fourth field.
|
Field<T4> |
Record11.field4()
Get the fourth field.
|
Field<T4> |
Record10.field4()
Get the fourth field.
|
Field<T5> |
Row9.field5()
Get the fifth field.
|
Field<T5> |
Row8.field5()
Get the fifth field.
|
Field<T5> |
Row7.field5()
Get the fifth field.
|
Field<T5> |
Row6.field5()
Get the fifth field.
|
Field<T5> |
Row5.field5()
Get the fifth field.
|
Field<T5> |
Row22.field5()
Get the fifth field.
|
Field<T5> |
Row21.field5()
Get the fifth field.
|
Field<T5> |
Row20.field5()
Get the fifth field.
|
Field<T5> |
Row19.field5()
Get the fifth field.
|
Field<T5> |
Row18.field5()
Get the fifth field.
|
Field<T5> |
Row17.field5()
Get the fifth field.
|
Field<T5> |
Row16.field5()
Get the fifth field.
|
Field<T5> |
Row15.field5()
Get the fifth field.
|
Field<T5> |
Row14.field5()
Get the fifth field.
|
Field<T5> |
Row13.field5()
Get the fifth field.
|
Field<T5> |
Row12.field5()
Get the fifth field.
|
Field<T5> |
Row11.field5()
Get the fifth field.
|
Field<T5> |
Row10.field5()
Get the fifth field.
|
Field<T5> |
Record9.field5()
Get the fifth field.
|
Field<T5> |
Record8.field5()
Get the fifth field.
|
Field<T5> |
Record7.field5()
Get the fifth field.
|
Field<T5> |
Record6.field5()
Get the fifth field.
|
Field<T5> |
Record5.field5()
Get the fifth field.
|
Field<T5> |
Record22.field5()
Get the fifth field.
|
Field<T5> |
Record21.field5()
Get the fifth field.
|
Field<T5> |
Record20.field5()
Get the fifth field.
|
Field<T5> |
Record19.field5()
Get the fifth field.
|
Field<T5> |
Record18.field5()
Get the fifth field.
|
Field<T5> |
Record17.field5()
Get the fifth field.
|
Field<T5> |
Record16.field5()
Get the fifth field.
|
Field<T5> |
Record15.field5()
Get the fifth field.
|
Field<T5> |
Record14.field5()
Get the fifth field.
|
Field<T5> |
Record13.field5()
Get the fifth field.
|
Field<T5> |
Record12.field5()
Get the fifth field.
|
Field<T5> |
Record11.field5()
Get the fifth field.
|
Field<T5> |
Record10.field5()
Get the fifth field.
|
Field<T6> |
Row9.field6()
Get the sixth field.
|
Field<T6> |
Row8.field6()
Get the sixth field.
|
Field<T6> |
Row7.field6()
Get the sixth field.
|
Field<T6> |
Row6.field6()
Get the sixth field.
|
Field<T6> |
Row22.field6()
Get the sixth field.
|
Field<T6> |
Row21.field6()
Get the sixth field.
|
Field<T6> |
Row20.field6()
Get the sixth field.
|
Field<T6> |
Row19.field6()
Get the sixth field.
|
Field<T6> |
Row18.field6()
Get the sixth field.
|
Field<T6> |
Row17.field6()
Get the sixth field.
|
Field<T6> |
Row16.field6()
Get the sixth field.
|
Field<T6> |
Row15.field6()
Get the sixth field.
|
Field<T6> |
Row14.field6()
Get the sixth field.
|
Field<T6> |
Row13.field6()
Get the sixth field.
|
Field<T6> |
Row12.field6()
Get the sixth field.
|
Field<T6> |
Row11.field6()
Get the sixth field.
|
Field<T6> |
Row10.field6()
Get the sixth field.
|
Field<T6> |
Record9.field6()
Get the sixth field.
|
Field<T6> |
Record8.field6()
Get the sixth field.
|
Field<T6> |
Record7.field6()
Get the sixth field.
|
Field<T6> |
Record6.field6()
Get the sixth field.
|
Field<T6> |
Record22.field6()
Get the sixth field.
|
Field<T6> |
Record21.field6()
Get the sixth field.
|
Field<T6> |
Record20.field6()
Get the sixth field.
|
Field<T6> |
Record19.field6()
Get the sixth field.
|
Field<T6> |
Record18.field6()
Get the sixth field.
|
Field<T6> |
Record17.field6()
Get the sixth field.
|
Field<T6> |
Record16.field6()
Get the sixth field.
|
Field<T6> |
Record15.field6()
Get the sixth field.
|
Field<T6> |
Record14.field6()
Get the sixth field.
|
Field<T6> |
Record13.field6()
Get the sixth field.
|
Field<T6> |
Record12.field6()
Get the sixth field.
|
Field<T6> |
Record11.field6()
Get the sixth field.
|
Field<T6> |
Record10.field6()
Get the sixth field.
|
Field<T7> |
Row9.field7()
Get the seventh field.
|
Field<T7> |
Row8.field7()
Get the seventh field.
|
Field<T7> |
Row7.field7()
Get the seventh field.
|
Field<T7> |
Row22.field7()
Get the seventh field.
|
Field<T7> |
Row21.field7()
Get the seventh field.
|
Field<T7> |
Row20.field7()
Get the seventh field.
|
Field<T7> |
Row19.field7()
Get the seventh field.
|
Field<T7> |
Row18.field7()
Get the seventh field.
|
Field<T7> |
Row17.field7()
Get the seventh field.
|
Field<T7> |
Row16.field7()
Get the seventh field.
|
Field<T7> |
Row15.field7()
Get the seventh field.
|
Field<T7> |
Row14.field7()
Get the seventh field.
|
Field<T7> |
Row13.field7()
Get the seventh field.
|
Field<T7> |
Row12.field7()
Get the seventh field.
|
Field<T7> |
Row11.field7()
Get the seventh field.
|
Field<T7> |
Row10.field7()
Get the seventh field.
|
Field<T7> |
Record9.field7()
Get the seventh field.
|
Field<T7> |
Record8.field7()
Get the seventh field.
|
Field<T7> |
Record7.field7()
Get the seventh field.
|
Field<T7> |
Record22.field7()
Get the seventh field.
|
Field<T7> |
Record21.field7()
Get the seventh field.
|
Field<T7> |
Record20.field7()
Get the seventh field.
|
Field<T7> |
Record19.field7()
Get the seventh field.
|
Field<T7> |
Record18.field7()
Get the seventh field.
|
Field<T7> |
Record17.field7()
Get the seventh field.
|
Field<T7> |
Record16.field7()
Get the seventh field.
|
Field<T7> |
Record15.field7()
Get the seventh field.
|
Field<T7> |
Record14.field7()
Get the seventh field.
|
Field<T7> |
Record13.field7()
Get the seventh field.
|
Field<T7> |
Record12.field7()
Get the seventh field.
|
Field<T7> |
Record11.field7()
Get the seventh field.
|
Field<T7> |
Record10.field7()
Get the seventh field.
|
Field<T8> |
Row9.field8()
Get the eighth field.
|
Field<T8> |
Row8.field8()
Get the eighth field.
|
Field<T8> |
Row22.field8()
Get the eighth field.
|
Field<T8> |
Row21.field8()
Get the eighth field.
|
Field<T8> |
Row20.field8()
Get the eighth field.
|
Field<T8> |
Row19.field8()
Get the eighth field.
|
Field<T8> |
Row18.field8()
Get the eighth field.
|
Field<T8> |
Row17.field8()
Get the eighth field.
|
Field<T8> |
Row16.field8()
Get the eighth field.
|
Field<T8> |
Row15.field8()
Get the eighth field.
|
Field<T8> |
Row14.field8()
Get the eighth field.
|
Field<T8> |
Row13.field8()
Get the eighth field.
|
Field<T8> |
Row12.field8()
Get the eighth field.
|
Field<T8> |
Row11.field8()
Get the eighth field.
|
Field<T8> |
Row10.field8()
Get the eighth field.
|
Field<T8> |
Record9.field8()
Get the eighth field.
|
Field<T8> |
Record8.field8()
Get the eighth field.
|
Field<T8> |
Record22.field8()
Get the eighth field.
|
Field<T8> |
Record21.field8()
Get the eighth field.
|
Field<T8> |
Record20.field8()
Get the eighth field.
|
Field<T8> |
Record19.field8()
Get the eighth field.
|
Field<T8> |
Record18.field8()
Get the eighth field.
|
Field<T8> |
Record17.field8()
Get the eighth field.
|
Field<T8> |
Record16.field8()
Get the eighth field.
|
Field<T8> |
Record15.field8()
Get the eighth field.
|
Field<T8> |
Record14.field8()
Get the eighth field.
|
Field<T8> |
Record13.field8()
Get the eighth field.
|
Field<T8> |
Record12.field8()
Get the eighth field.
|
Field<T8> |
Record11.field8()
Get the eighth field.
|
Field<T8> |
Record10.field8()
Get the eighth field.
|
Field<T9> |
Row9.field9()
Get the ninth field.
|
Field<T9> |
Row22.field9()
Get the ninth field.
|
Field<T9> |
Row21.field9()
Get the ninth field.
|
Field<T9> |
Row20.field9()
Get the ninth field.
|
Field<T9> |
Row19.field9()
Get the ninth field.
|
Field<T9> |
Row18.field9()
Get the ninth field.
|
Field<T9> |
Row17.field9()
Get the ninth field.
|
Field<T9> |
Row16.field9()
Get the ninth field.
|
Field<T9> |
Row15.field9()
Get the ninth field.
|
Field<T9> |
Row14.field9()
Get the ninth field.
|
Field<T9> |
Row13.field9()
Get the ninth field.
|
Field<T9> |
Row12.field9()
Get the ninth field.
|
Field<T9> |
Row11.field9()
Get the ninth field.
|
Field<T9> |
Row10.field9()
Get the ninth field.
|
Field<T9> |
Record9.field9()
Get the ninth field.
|
Field<T9> |
Record22.field9()
Get the ninth field.
|
Field<T9> |
Record21.field9()
Get the ninth field.
|
Field<T9> |
Record20.field9()
Get the ninth field.
|
Field<T9> |
Record19.field9()
Get the ninth field.
|
Field<T9> |
Record18.field9()
Get the ninth field.
|
Field<T9> |
Record17.field9()
Get the ninth field.
|
Field<T9> |
Record16.field9()
Get the ninth field.
|
Field<T9> |
Record15.field9()
Get the ninth field.
|
Field<T9> |
Record14.field9()
Get the ninth field.
|
Field<T9> |
Record13.field9()
Get the ninth field.
|
Field<T9> |
Record12.field9()
Get the ninth field.
|
Field<T9> |
Record11.field9()
Get the ninth field.
|
Field<T9> |
Record10.field9()
Get the ninth field.
|
Field<?>[] |
UDT.fields()
Get all fields from this UDT.
|
Field<?>[] |
TableLike.fields()
Get all fields from this table.
|
Field<?>[] |
Row.fields()
Get all fields from this row.
|
Field<?>[] |
Result.fields()
Get all fields from this Result.
|
Field<?>[] |
RecordType.fields()
Get all fields from this record type.
|
Field<?>[] |
Record.fields()
Get all fields from this Record.
|
Field<?>[] |
Cursor.fields()
Get all fields from this Cursor.
|
Field<?>[] |
UDT.fields(Field<?>... fields)
Get all fields from this UDT, providing some fields.
|
Field<?>[] |
TableLike.fields(Field<?>... fields)
Get all fields from this table, providing some fields.
|
Field<?>[] |
Row.fields(Field<?>... fields)
Get all fields from this row, providing some fields.
|
Field<?>[] |
Result.fields(Field<?>... fields)
Get all fields from this Result, providing some fields.
|
Field<?>[] |
RecordType.fields(Field<?>... fields)
Get all fields from this record type, providing some fields.
|
Field<?>[] |
Record.fields(Field<?>... fields)
Get all fields from this Record, providing some fields.
|
Field<?>[] |
Cursor.fields(Field<?>... fields)
Get all fields from this Cursor, providing some fields.
|
Field<?>[] |
UDT.fields(int... fieldIndexes)
Get all fields from this UDT, providing some field indexes.
|
Field<?>[] |
TableLike.fields(int... fieldIndexes)
Get all fields from this table, providing some field indexes.
|
Field<?>[] |
Row.fields(int... fieldIndexes)
Get all fields from this row, providing some field indexes.
|
Field<?>[] |
Result.fields(int... fieldIndexes)
Get all fields from this Result, providing some field indexes.
|
Field<?>[] |
RecordType.fields(int... fieldIndexes)
Get all fields from this record type, providing some field indexes.
|
Field<?>[] |
Record.fields(int... fieldIndexes)
Get all fields from this Record, providing some field indexes.
|
Field<?>[] |
Cursor.fields(int... fieldIndexes)
Get all fields from this Cursor, providing some field indexes.
|
Field<?>[] |
UDT.fields(Name... fieldNames)
Get all fields from this UDT, providing some field names.
|
Field<?>[] |
TableLike.fields(Name... fieldNames)
Get all fields from this table, providing some field names.
|
Field<?>[] |
Row.fields(Name... fieldNames)
Get all fields from this row, providing some field names.
|
Field<?>[] |
Result.fields(Name... fieldNames)
Get all fields from this Result, providing some field names.
|
Field<?>[] |
RecordType.fields(Name... fieldNames)
Get all fields from this record type, providing some field names.
|
Field<?>[] |
Record.fields(Name... fieldNames)
Get all fields from this Record, providing some field names.
|
Field<?>[] |
Cursor.fields(Name... fieldNames)
Get all fields from this Cursor, providing some field names.
|
Field<?>[] |
UDT.fields(String... fieldNames)
Get all fields from this UDT, providing some field names.
|
Field<?>[] |
TableLike.fields(String... fieldNames)
Get all fields from this table, providing some field names.
|
Field<?>[] |
Row.fields(String... fieldNames)
Get all fields from this row, providing some field names.
|
Field<?>[] |
Result.fields(String... fieldNames)
Get all fields from this Result, providing some field names.
|
Field<?>[] |
RecordType.fields(String... fieldNames)
Get all fields from this record type, providing some field names.
|
Field<?>[] |
Record.fields(String... fieldNames)
Get all fields from this Record, providing some field names.
|
Field<?>[] |
Cursor.fields(String... fieldNames)
Get all fields from this Cursor, providing some field names.
|
Field<T> |
Field.floor()
This method is part of the pre-2.0 API.
|
Field<T> |
Field.greatest(Field<?>... others)
This method is part of the pre-2.0 API.
|
Field<T> |
Field.greatest(T... others)
This method is part of the pre-2.0 API.
|
Field<T> |
Field.least(Field<?>... others)
This method is part of the pre-2.0 API.
|
Field<T> |
Field.least(T... others)
This method is part of the pre-2.0 API.
|
Field<Integer> |
Field.length()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.ln()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.log(int base)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.lower()
This method is part of the pre-2.0 API.
|
Field<String> |
Field.lpad(Field<? extends Number> length)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.lpad(Field<? extends Number> length,
Field<String> character)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.lpad(int length)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.lpad(int length,
char character)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.ltrim()
This method is part of the pre-2.0 API.
|
Field<?> |
LoaderFieldMapper.map(LoaderFieldMapper.LoaderFieldContext ctx)
Map a
Field from the loader source onto a target table
Field . |
Field<T> |
Field.max()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.median()
This method is part of the pre-2.0 API.
|
Field<T> |
Field.min()
This method is part of the pre-2.0 API.
|
Field<T> |
Field.minus(Field<?> value)
An alias for
sub(Field) . |
Field<T> |
Field.minus(Number value)
An alias for
sub(Number) . |
Field<T> |
Field.mod(Field<? extends Number> value)
An arithmetic expression getting the modulo of this divided by value.
|
Field<T> |
Field.mod(Number value)
An arithmetic expression getting the modulo of this divided by value.
|
Field<T> |
Field.modulo(Field<? extends Number> value)
An alias for
mod(Field) . |
Field<T> |
Field.modulo(Number value)
An alias for
mod(Number) . |
Field<T> |
Field.mul(Field<? extends Number> value)
An arithmetic expression multiplying this with value.
|
Field<T> |
Field.mul(Number value)
An arithmetic expression multiplying this with value.
|
Field<T> |
Field.multiply(Field<? extends Number> value)
An alias for
mul(Field) . |
Field<T> |
Field.multiply(Number value)
An alias for
mul(Number) . |
Field<T> |
Field.neg()
Negate this field to get its negative value.
|
Field<T> |
Sequence.nextval()
Increment the sequence and get the next value
|
Field<T> |
Field.nullif(Field<T> other)
This method is part of the pre-2.0 API.
|
Field<T> |
Field.nullif(T other)
This method is part of the pre-2.0 API.
|
Field<T> |
Field.nvl(Field<T> defaultValue)
This method is part of the pre-2.0 API.
|
Field<T> |
Field.nvl(T defaultValue)
This method is part of the pre-2.0 API.
|
<Z> Field<Z> |
Field.nvl2(Field<Z> valueIfNotNull,
Field<Z> valueIfNull)
This method is part of the pre-2.0 API.
|
<Z> Field<Z> |
Field.nvl2(Z valueIfNotNull,
Z valueIfNull)
This method is part of the pre-2.0 API.
|
Field<Integer> |
Field.octetLength()
This method is part of the pre-2.0 API.
|
Field<T> |
CaseWhenStep.otherwise(Field<T> result)
Add an else clause to the already constructed case statement
|
Field<T> |
CaseConditionStep.otherwise(Field<T> result)
Add an else clause to the already constructed case statement
|
Field<T> |
CaseConditionStep.otherwise(Select<? extends Record1<T>> result)
Add an else clause to the already constructed case statement
|
Field<T> |
CaseWhenStep.otherwise(T result)
Add an else clause to the already constructed case statement
|
Field<T> |
CaseConditionStep.otherwise(T result)
Add an else clause to the already constructed case statement
|
Field<T> |
Field.plus()
Turn this field into an Oracle-specific field for use in outer-join
predicates.
|
Field<T> |
Field.plus(Field<?> value)
An alias for
add(Field) . |
Field<T> |
Field.plus(Number value)
An alias for
add(Number) . |
Field<Integer> |
Field.position(Field<String> search)
This method is part of the pre-2.0 API.
|
Field<Integer> |
Field.position(String search)
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.pow(Number exponent)
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.power(Number exponent)
An alias for
power(Number) . |
Field<BigDecimal> |
Field.rad()
This method is part of the pre-2.0 API.
|
Field<String> |
Field.repeat(Field<? extends Number> count)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.repeat(Number count)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.replace(Field<String> search)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.replace(Field<String> search,
Field<String> replace)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.replace(String search)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.replace(String search,
String replace)
This method is part of the pre-2.0 API.
|
Field<T> |
Field.round()
This method is part of the pre-2.0 API.
|
Field<T> |
Field.round(int decimals)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.rpad(Field<? extends Number> length)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.rpad(Field<? extends Number> length,
Field<String> character)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.rpad(int length)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.rpad(int length,
char character)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.rtrim()
This method is part of the pre-2.0 API.
|
Field<T> |
Field.shl(Field<? extends Number> value)
The bitwise left shift operator.
|
Field<T> |
Field.shl(Number value)
The bitwise left shift operator.
|
Field<T> |
Field.shr(Field<? extends Number> value)
The bitwise right shift operator.
|
Field<T> |
Field.shr(Number value)
The bitwise right shift operator.
|
Field<Integer> |
Field.sign()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.sin()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.sinh()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.sqrt()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.stddevPop()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.stddevSamp()
This method is part of the pre-2.0 API.
|
Field<T> |
Field.sub(Field<?> value)
An arithmetic expression subtracting value from this.
|
Field<T> |
Field.sub(Number value)
An arithmetic expression subtracting value from this.
|
Field<String> |
Field.substring(Field<? extends Number> startingPosition)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.substring(Field<? extends Number> startingPosition,
Field<? extends Number> length)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.substring(int startingPosition)
This method is part of the pre-2.0 API.
|
Field<String> |
Field.substring(int startingPosition,
int length)
This method is part of the pre-2.0 API.
|
Field<T> |
Field.subtract(Field<?> value)
An alias for
sub(Field) . |
Field<T> |
Field.subtract(Number value)
An alias for
sub(Number) . |
Field<BigDecimal> |
Field.sum()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.tan()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.tanh()
This method is part of the pre-2.0 API.
|
Field<String> |
Field.trim()
This method is part of the pre-2.0 API.
|
Field<String> |
Field.upper()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.varPop()
This method is part of the pre-2.0 API.
|
Field<BigDecimal> |
Field.varSamp()
This method is part of the pre-2.0 API.
|
Modifier and Type | Method and Description |
---|---|
List<Field<?>> |
Select.getSelect()
All fields selected in this query
|
Modifier and Type | Method and Description |
---|---|
Field<T> |
Field.add(Field<?> value)
An arithmetic expression to add value to this.
|
<T> AlterTableFinalStep |
AlterTableStep.add(Field<T> field,
DataType<T> type)
Add an
ADD COLUMN clause to the ALTER TABLE
statement. |
<T> AlterTableFinalStep |
AlterTableStep.addColumn(Field<T> field,
DataType<T> type)
Add an
ADD COLUMN clause to the ALTER TABLE
statement. |
void |
SelectQuery.addJoin(TableLike<?> table,
JoinType type,
Condition[] conditions,
Field<?>[] partitionBy)
Joins the existing table product to a new table using conditions,
connecting them with each other with
Operator.AND . |
void |
SelectQuery.addOrderBy(Field<?>... fields)
Adds ordering fields, ordering by the default sort order.
|
void |
SelectQuery.addSeekAfter(Field<?>... fields)
Adds seeking fields.
|
void |
SelectQuery.addSeekBefore(Field<?>... fields)
Adds seeking fields.
|
<T> void |
StoreQuery.addValue(Field<T> field,
Field<T> value)
Add a value to the store statement
|
<T> void |
StoreQuery.addValue(Field<T> field,
Field<T> value)
Add a value to the store statement
|
<T> void |
StoreQuery.addValue(Field<T> field,
T value)
Add a value to the store statement
|
<T> void |
InsertQuery.addValueForUpdate(Field<T> field,
Field<T> value)
Add a value to the
ON DUPLICATE KEY UPDATE clause of this
INSERT statement, where this is supported. |
<T> void |
InsertQuery.addValueForUpdate(Field<T> field,
Field<T> value)
Add a value to the
ON DUPLICATE KEY UPDATE clause of this
INSERT statement, where this is supported. |
<T> void |
InsertQuery.addValueForUpdate(Field<T> field,
T value)
Add a value to the
ON DUPLICATE KEY UPDATE clause of this
INSERT statement, where this is supported. |
<T> AlterTableAlterStep<T> |
AlterTableStep.alter(Field<T> field)
Add an
ALTER COLUMN clause to the ALTER TABLE
statement. |
<T> AlterTableAlterStep<T> |
AlterTableStep.alterColumn(Field<T> field)
Add an
ALTER COLUMN clause to the ALTER TABLE
statement. |
Condition |
BetweenAndStepN.and(Field<?>... maxValues)
Create a condition to check this field against some bounds
|
Table<R> |
VersionsBetweenAndStep.and(Field<? extends T> scn)
Add an
AND clause to the flashback versions query clause. |
UpdateConditionStep<R> |
UpdateConditionStep.and(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator |
TableOnConditionStep<R> |
TableOnConditionStep.and(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
SelectOnConditionStep<R> |
SelectOnConditionStep.and(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
SelectHavingConditionStep<R> |
SelectHavingConditionStep.and(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
SelectConnectByConditionStep<R> |
SelectConnectByConditionStep.and(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.and(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
MergeOnConditionStep<R> |
MergeOnConditionStep.and(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
DivideByOnConditionStep |
DivideByOnConditionStep.and(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
DeleteConditionStep<R> |
DeleteConditionStep.and(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator |
Condition |
Condition.and(Field<Boolean> other)
Combine this condition with another one using the
Operator.AND
operator. |
Condition |
BetweenAndStep.and(Field<T> field)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep1.and(Field<T1> maxValue1)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep2.and(Field<T1> maxValue1,
Field<T2> maxValue2)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep2.and(Field<T1> maxValue1,
Field<T2> maxValue2)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep3.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep3.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep3.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep4.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep4.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep4.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep4.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep5.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep5.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep5.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep5.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep5.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep6.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep6.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep6.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep6.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep6.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep6.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep7.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep7.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep7.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep7.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep7.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep7.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep7.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep8.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep8.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep8.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep8.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep8.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep8.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep8.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep8.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep9.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep9.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep9.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep9.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep9.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep9.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep9.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep9.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep9.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep10.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep10.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep10.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep10.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep10.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep10.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep10.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep10.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep10.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep10.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep11.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep11.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep11.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep11.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep11.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep11.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep11.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep11.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep11.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep11.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep11.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep12.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep12.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep12.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep12.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep12.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep12.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep12.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep12.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep12.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep12.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep12.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep12.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep13.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep13.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep13.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep13.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep13.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep13.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep13.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep13.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep13.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep13.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep13.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep13.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep13.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep14.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep14.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep14.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep14.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep14.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep14.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep14.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep14.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep14.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep14.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep14.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep14.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep14.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep14.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep15.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep15.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep15.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep15.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep15.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep15.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep15.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep15.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep15.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep15.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep15.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep15.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep15.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep15.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep15.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep16.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep17.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep18.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep19.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep20.and(Field<T1> maxValue1,
Field<T2> maxValue2,
Field<T3> maxValue3,
Field<T4> maxValue4,
Field<T5> maxValue5,
Field<T6> maxValue6,
Field<T7> maxValue7,
Field<T8> maxValue8,
Field<T9> maxValue9,
Field<T10> maxValue10,
Field<T11> maxValue11,
Field<T12> maxValue12,
Field<T13> maxValue13,
Field<T14> maxValue14,
Field<T15> maxValue15,
Field<T16> maxValue16,
Field<T17> maxValue17,
Field<T18> maxValue18,
Field<T19> maxValue19,
Field<T20> maxValue20)
Create a condition to check this field against some bounds
|
Condition |
BetweenAndStep20.and(Field< |