Package org.primefaces.model.chart
Enum LegendPlacement
- java.lang.Object
-
- java.lang.Enum<LegendPlacement>
-
- org.primefaces.model.chart.LegendPlacement
-
- All Implemented Interfaces:
Serializable
,Comparable<LegendPlacement>
@Deprecated public enum LegendPlacement extends Enum<LegendPlacement>
Deprecated.please use ChartsJS as this will be removed in PF 13.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSIDE
Deprecated.OUTSIDE
Deprecated.OUTSIDEGRID
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
toString()
Deprecated.static LegendPlacement
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static LegendPlacement[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OUTSIDE
public static final LegendPlacement OUTSIDE
Deprecated.
-
OUTSIDEGRID
public static final LegendPlacement OUTSIDEGRID
Deprecated.
-
INSIDE
public static final LegendPlacement INSIDE
Deprecated.
-
-
Method Detail
-
values
public static LegendPlacement[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LegendPlacement c : LegendPlacement.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LegendPlacement valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
Deprecated.- Overrides:
toString
in classEnum<LegendPlacement>
-
-