Package io.jmix.reports.entity
Enum Class Orientation
- All Implemented Interfaces:
EnumClass<Integer>,Serializable,Comparable<Orientation>,Constable
Band orientation. Relevant only for spreadsheet-like output types (XLS, XLSX).
Determines direction where data entries are copied on the sheet.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBand entries are copied to the right and downwards as a matrix.Band entries are copied downwards.Band entries are copied to the right. -
Method Summary
Modifier and TypeMethodDescriptionstatic OrientationfromBandOrientation(BandOrientation orientation) static OrientationgetId()static OrientationReturns the enum constant of this class with the specified name.static Orientation[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
HORIZONTAL
Band entries are copied downwards. -
VERTICAL
Band entries are copied to the right. -
CROSS
Band entries are copied to the right and downwards as a matrix. The band must contain three datasets:${band_name}_dynamic_header- the data from this dataset is copied to the right like a vertical band with table columns header${band_name}_master_data- the data from this dataset is copied downwards like a horizontal band with table rows header${band_name}- the dataset named the same as the band, it belongs to; it is the main content band that will fulfill the matrix cells.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getId
-
getBandOrientation
-
fromId
-
fromBandOrientation
-