public enum WireType extends Enum<WireType> implements java.util.function.Function<net.openhft.chronicle.bytes.Bytes,Wire>
| Enum Constant and Description |
|---|
BINARY |
COMPRESSED_BINARY |
FIELDLESS_BINARY |
JSON |
RAW |
READ_ANY |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
java.util.function.Supplier<net.openhft.chronicle.core.values.LongArrayValues> |
newLongArrayReference() |
java.util.function.Supplier<net.openhft.chronicle.core.values.LongValue> |
newLongReference() |
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
public static final WireType FIELDLESS_BINARY
public static final WireType COMPRESSED_BINARY
public static final WireType JSON
public static final WireType RAW
public static final WireType READ_ANY
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 nullpublic java.util.function.Supplier<net.openhft.chronicle.core.values.LongValue> newLongReference()
public java.util.function.Supplier<net.openhft.chronicle.core.values.LongArrayValues> newLongArrayReference()
Copyright © 2015. All rights reserved.