public static final class AddCommand.ValueState extends Object
add command.
This is a terminal state that produces CCL without a record target, but
can optionally be narrowed to specific records via
in(long, long...).| Modifier and Type | Method and Description |
|---|---|
String |
ccl()
Return a CCL string equivalent to this
Command. |
boolean |
equals(Object obj) |
int |
hashCode() |
AddCommand.RecordState |
in(long record)
Add into the specified
record. |
AddCommand.RecordState |
in(long first,
long... more)
Add into the specified
records. |
String |
key()
Return the key for this command.
|
AddCommand.RecordState |
to(long record)
Alias for
in(long) to support alternate CCL dialects. |
AddCommand.RecordState |
to(long first,
long... more)
Alias for
in(long, long...) to support alternate CCL
dialects. |
String |
toString() |
Object |
value()
Return the value for this command.
|
AddCommand.RecordState |
within(long record)
Alias for
in(long) to support alternate CCL dialects. |
AddCommand.RecordState |
within(long first,
long... more)
Alias for
in(long, long...) to support alternate CCL
dialects. |
public AddCommand.RecordState in(long record)
record.record - the target recordpublic AddCommand.RecordState in(long first, long... more)
records.first - the first recordmore - additional recordspublic AddCommand.RecordState to(long record)
in(long) to support alternate CCL dialects.record - the target recordpublic AddCommand.RecordState to(long first, long... more)
in(long, long...) to support alternate CCL
dialects.first - the first recordmore - additional recordspublic AddCommand.RecordState within(long record)
in(long) to support alternate CCL dialects.record - the target recordpublic AddCommand.RecordState within(long first, long... more)
in(long, long...) to support alternate CCL
dialects.first - the first recordmore - additional recordspublic String key()
public Object value()
public String ccl()
CommandCommand.