public enum DefaultConfigParameter extends Enum<DefaultConfigParameter> implements ConfigParameter
The parameters are applied as HTML param tags on the underlying player plugin.
ConfigParameter
Enum Constant and Description |
---|
BackgroundColor
Parameter for the background color property or a player.
|
TransparencyMode
Parameter for the transparency mode for a player (if available).
|
Modifier and Type | Method and Description |
---|---|
String |
getName()
Returns the name of the parameter
|
Class[] |
getValueType()
Returns the required value type for this parameter.
|
static DefaultConfigParameter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultConfigParameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultConfigParameter TransparencyMode
This parameter requires a TransparencyMode value type
public static final DefaultConfigParameter BackgroundColor
This parameter is used to specify the background color for the exposed part of a players' alloted space The value should be specified as a CSS color value (i.e. hexadecimal RGB values)
public static DefaultConfigParameter[] values()
for (DefaultConfigParameter c : DefaultConfigParameter.values()) System.out.println(c);
public static DefaultConfigParameter 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 Class[] getValueType()
ConfigParameter
getValueType
in interface ConfigParameter
public String getName()
ConfigParameter
getName
in interface ConfigParameter
Copyright © 2009-2013. All Rights Reserved.