public static final class InsertCommand.JsonState extends Object
insert
command. This state 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() |
InsertCommand.RecordState |
in(long record)
Insert into the specified
record. |
InsertCommand.RecordState |
in(long first,
long... more)
Insert into the specified
records. |
InsertCommand.RecordState |
into(long record)
Alias for
in(long) to support alternate CCL dialects. |
InsertCommand.RecordState |
into(long first,
long... more)
Alias for
in(long, long...) to support alternate CCL
dialects. |
String |
json()
Return the JSON data for this command.
|
InsertCommand.RecordState |
to(long record)
Alias for
in(long) to support alternate CCL dialects. |
InsertCommand.RecordState |
to(long first,
long... more)
Alias for
in(long, long...) to support alternate CCL
dialects. |
String |
toString() |
InsertCommand.RecordState |
within(long record)
Alias for
in(long) to support alternate CCL dialects. |
InsertCommand.RecordState |
within(long first,
long... more)
Alias for
in(long, long...) to support alternate CCL
dialects. |
public InsertCommand.RecordState in(long record)
record.record - the target recordpublic InsertCommand.RecordState in(long first, long... more)
records.first - the first recordmore - additional recordspublic InsertCommand.RecordState into(long record)
in(long) to support alternate CCL dialects.record - the target recordpublic InsertCommand.RecordState into(long first, long... more)
in(long, long...) to support alternate CCL
dialects.first - the first recordmore - additional recordspublic InsertCommand.RecordState to(long record)
in(long) to support alternate CCL dialects.record - the target recordpublic InsertCommand.RecordState to(long first, long... more)
in(long, long...) to support alternate CCL
dialects.first - the first recordmore - additional recordspublic InsertCommand.RecordState within(long record)
in(long) to support alternate CCL dialects.record - the target recordpublic InsertCommand.RecordState within(long first, long... more)
in(long, long...) to support alternate CCL
dialects.first - the first recordmore - additional recordspublic String json()
public String ccl()
CommandCommand.