public enum Wires extends Enum<Wires>
| Modifier and Type | Field and Description |
|---|---|
static net.openhft.chronicle.core.pool.StringInterner |
INTERNER |
static int |
LENGTH_MASK |
| Modifier and Type | Method and Description |
|---|---|
static StringBuilder |
acquireAnotherStringBuilder(CharSequence cs) |
static StringBuilder |
acquireStringBuilder() |
static String |
fromSizePrefixedBinaryToText(net.openhft.chronicle.bytes.Bytes bytes) |
static String |
fromSizePrefixedBlobs(net.openhft.chronicle.bytes.Bytes bytes) |
static <E extends Enum<E>> |
internEnum(Class<E> eClass,
CharSequence cs) |
static boolean |
isData(long len) |
static boolean |
isReady(long len) |
static int |
lengthOf(long len) |
static void |
rawReadData(WireIn wireIn,
ReadMarshallable dataConsumer) |
static boolean |
readData(long offset,
WireIn wireIn,
ReadMarshallable metaDataConsumer,
ReadMarshallable dataConsumer) |
static boolean |
readData(WireIn wireIn,
ReadMarshallable metaDataConsumer,
ReadMarshallable dataConsumer) |
static Throwable |
throwable(ValueIn valueIn,
boolean appendCurrentStack) |
static Wires |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Wires[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static void |
writeData(WireOut wireOut,
boolean metaData,
boolean notReady,
WriteMarshallable writer) |
static void |
writeDataOnce(WireOut wireOut,
boolean metaData,
WriteMarshallable writer) |
public static final int LENGTH_MASK
public static final net.openhft.chronicle.core.pool.StringInterner INTERNER
public static Wires[] values()
for (Wires c : Wires.values()) System.out.println(c);
public static Wires 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 static <E extends Enum<E>> E internEnum(Class<E> eClass, CharSequence cs)
public static StringBuilder acquireStringBuilder()
public static StringBuilder acquireAnotherStringBuilder(CharSequence cs)
public static void writeData(@NotNull
WireOut wireOut,
boolean metaData,
boolean notReady,
@NotNull
WriteMarshallable writer)
public static void writeDataOnce(@NotNull
WireOut wireOut,
boolean metaData,
@NotNull
WriteMarshallable writer)
public static boolean readData(long offset,
@NotNull
WireIn wireIn,
@Nullable
ReadMarshallable metaDataConsumer,
@Nullable
ReadMarshallable dataConsumer)
public static boolean readData(@NotNull
WireIn wireIn,
@Nullable
ReadMarshallable metaDataConsumer,
@Nullable
ReadMarshallable dataConsumer)
public static void rawReadData(@NotNull
WireIn wireIn,
@NotNull
ReadMarshallable dataConsumer)
public static String fromSizePrefixedBlobs(@NotNull net.openhft.chronicle.bytes.Bytes bytes)
public static String fromSizePrefixedBinaryToText(@NotNull net.openhft.chronicle.bytes.Bytes bytes)
public static int lengthOf(long len)
public static boolean isReady(long len)
public static boolean isData(long len)
Copyright © 2015. All rights reserved.