Serializable
, Comparable<RenderType>
public enum RenderType extends Enum<RenderType>
Objective
is rendered client side.Enum Constant | Description |
---|---|
HEARTS |
Display number of hearts corresponding to value.
|
INTEGER |
Display integer value.
|
Modifier and Type | Method | Description |
---|---|---|
static RenderType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static RenderType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderType INTEGER
public static final RenderType HEARTS
public static RenderType[] values()
for (RenderType c : RenderType.values()) System.out.println(c);
public static RenderType 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. All rights reserved.