public static enum WireOut.EndOfWire extends Enum<WireOut.EndOfWire>
| Enum Constant and Description |
|---|
NOT_PRESENT
EOF marker is not present and was not written
|
PRESENT
EOF marker is present
|
PRESENT_AFTER_UPDATE
EOF marker was not present have been written and now in place
|
| Modifier and Type | Method and Description |
|---|---|
static WireOut.EndOfWire |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WireOut.EndOfWire[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WireOut.EndOfWire NOT_PRESENT
public static final WireOut.EndOfWire PRESENT_AFTER_UPDATE
public static final WireOut.EndOfWire PRESENT
public static WireOut.EndOfWire[] values()
for (WireOut.EndOfWire c : WireOut.EndOfWire.values()) System.out.println(c);
public static WireOut.EndOfWire 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 © 2023. All rights reserved.