public enum EPlayerColor extends java.lang.Enum<EPlayerColor>
| Enum Constant | Description |
|---|---|
BLUE |
#0000ff.
|
BURGUNDY |
#8b0000.
|
CYAN |
#00ffff.
|
DARKBLUE |
#00008b.
|
DARKGREEN |
#008000.
|
GREEN |
#7cfc00.
|
LIGHTBLUE |
#add8e6.
|
MAGENTA |
#ff00ff.
|
MAROON |
#800000.
|
ORANGE |
#ffa500.
|
PINK |
#ffc0cb.
|
PURPLE |
#800080.
|
SALMON |
#fa8072.
|
TURQUIS |
#40e0d0.
|
YELLOW |
#ffff00.
|
YELLOWGREEN |
#9acd32.
|
| Modifier and Type | Method | Description |
|---|---|---|
javafx.scene.paint.Color |
getColor() |
|
static EPlayerColor |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static EPlayerColor[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EPlayerColor BLUE
public static final EPlayerColor GREEN
public static final EPlayerColor DARKGREEN
public static final EPlayerColor YELLOW
public static final EPlayerColor PURPLE
public static final EPlayerColor PINK
public static final EPlayerColor ORANGE
public static final EPlayerColor BURGUNDY
public static final EPlayerColor LIGHTBLUE
public static final EPlayerColor TURQUIS
public static final EPlayerColor DARKBLUE
public static final EPlayerColor MAGENTA
public static final EPlayerColor MAROON
public static final EPlayerColor YELLOWGREEN
public static final EPlayerColor CYAN
public static final EPlayerColor SALMON
public static EPlayerColor[] values()
for (EPlayerColor c : EPlayerColor.values()) System.out.println(c);
public static EPlayerColor valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic javafx.scene.paint.Color getColor()
Copyright © 2011-2018 Sahits GmbH. All Rights Reserved.