public enum WireType extends Enum<WireType> implements java.util.function.Function<net.openhft.chronicle.bytes.Bytes,net.openhft.chronicle.wire.Wire>
| Modifier and Type | Field and Description |
|---|---|
static java.util.function.Function<net.openhft.chronicle.bytes.Bytes,net.openhft.chronicle.wire.Wire> |
wire |
| Modifier and Type | Method and Description |
|---|---|
static WireType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WireType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfandThen, apply, compose, identitypublic static final WireType TEXT
public static final WireType BINARY
@NotNull public static java.util.function.Function<net.openhft.chronicle.bytes.Bytes,net.openhft.chronicle.wire.Wire> wire
public static WireType[] values()
for (WireType c : WireType.values()) System.out.println(c);
public static WireType 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 © 2015. All rights reserved.