public enum ClassMarshaller extends Enum<ClassMarshaller> implements ProtoStreamMarshaller<Class<?>>
| Enum Constant and Description |
|---|
ANY |
ARRAY |
FIELD |
ID |
LOADED |
NAME |
OBJECT |
| Modifier and Type | Method and Description |
|---|---|
Class<? extends Class<?>> |
getJavaClass() |
static ClassMarshaller |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClassMarshaller[] |
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, valueOfgetTypeNamebyteArraySize, signedIntSize, signedLongSize, size, stringSize, unsignedIntSize, unsignedLongSizepublic static final ClassMarshaller ANY
public static final ClassMarshaller ARRAY
public static final ClassMarshaller FIELD
public static final ClassMarshaller ID
public static final ClassMarshaller LOADED
public static final ClassMarshaller NAME
public static final ClassMarshaller OBJECT
public static ClassMarshaller[] values()
for (ClassMarshaller c : ClassMarshaller.values()) System.out.println(c);
public static ClassMarshaller 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 © 2020 JBoss by Red Hat. All rights reserved.