public enum RenderStateType extends Enum<RenderStateType>
Enum Constant and Description |
---|
alpha
alpha.
|
blendMode
blend mode.
|
clip
clip.
|
color
color.
|
font
font.
|
imageScale
image scale.
|
position
save position information.
|
textSize
text size.
|
Modifier and Type | Method and Description |
---|---|
static Set<RenderStateType> |
allStates()
Helper to get all available RenderStates as a set.
|
static RenderStateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderStateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderStateType position
public static final RenderStateType color
public static final RenderStateType alpha
public static final RenderStateType textSize
public static final RenderStateType imageScale
public static final RenderStateType font
public static final RenderStateType clip
public static final RenderStateType blendMode
public static RenderStateType[] values()
for (RenderStateType c : RenderStateType.values()) System.out.println(c);
public static RenderStateType 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 Set<RenderStateType> allStates()
Copyright © 2013. All Rights Reserved.