Package cronapp.reports.j4c.commons
Enum J4CChartPosition
- java.lang.Object
-
- java.lang.Enum<J4CChartPosition>
-
- cronapp.reports.j4c.commons.J4CChartPosition
-
- All Implemented Interfaces:
Serializable,Comparable<J4CChartPosition>
public enum J4CChartPosition extends Enum<J4CChartPosition>
Posição do gráfico dentro do relatório. Created by arthemus on 13/07/16.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String[]names()static J4CChartPositionvalueOf(String name)Returns the enum constant of this type with the specified name.static J4CChartPosition[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HEADER
public static final J4CChartPosition HEADER
-
FOOTER
public static final J4CChartPosition FOOTER
-
-
Method Detail
-
values
public static J4CChartPosition[] values()
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 (J4CChartPosition c : J4CChartPosition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static J4CChartPosition valueOf(String name)
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
-
names
public static String[] names()
-
-