| Enum Constant and Description |
|---|
ATTACHMENTS_END
end of list of attachments.
|
ATTACHMENTS_START
start of list of attachments.
|
BINARY
single binary object.
|
MAPPING_END
end of a mapping.
|
MAPPING_START
start of a mapping.
|
OBJECT_END
end of an object (= document) in stream.
|
OBJECT_START
start of an object (= document) in stream.
|
SCALAR_BOOL
current value is a boolean.
|
SCALAR_DOUBLE
current value is a double.
|
SCALAR_INT
current value is a integer.
|
SCALAR_STRING
current value is a string.
|
SEQUENCE_END
end of a sequence.
|
SEQUENCE_START
start of a sequence.
|
UNDEFINED
hm. what's this.
|
| Modifier and Type | Method and Description |
|---|---|
static IpcToken |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IpcToken[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IpcToken OBJECT_START
public static final IpcToken OBJECT_END
public static final IpcToken MAPPING_START
public static final IpcToken MAPPING_END
public static final IpcToken SEQUENCE_START
public static final IpcToken SEQUENCE_END
public static final IpcToken SCALAR_INT
public static final IpcToken SCALAR_STRING
public static final IpcToken SCALAR_DOUBLE
public static final IpcToken SCALAR_BOOL
public static final IpcToken ATTACHMENTS_START
public static final IpcToken ATTACHMENTS_END
public static final IpcToken BINARY
public static final IpcToken UNDEFINED
public static IpcToken[] values()
for (IpcToken c : IpcToken.values()) System.out.println(c);
public static IpcToken valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null