public static enum Message.Fragment extends Enum<Message.Fragment>
| Enum Constant and Description |
|---|
END
The last fragmented message
|
INTERMEDIATE
Intermediate fragmented messages
|
NONE
Message is not fragmented
|
START
The first fragmented message
|
| Modifier and Type | Method and Description |
|---|---|
static Message.Fragment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Message.Fragment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Message.Fragment NONE
public static final Message.Fragment START
public static final Message.Fragment INTERMEDIATE
public static final Message.Fragment END
public static Message.Fragment[] values()
for (Message.Fragment c : Message.Fragment.values()) System.out.println(c);
public static Message.Fragment valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 Bloomberg L.P.. All rights reserved.