com.stimulsoft.report.components.enums
Enum StiAligning

java.lang.Object
  extended by java.lang.Enum<StiAligning>
      extended by com.stimulsoft.report.components.enums.StiAligning
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StiAligning>

public enum StiAligning
extends java.lang.Enum<StiAligning>

Modes of the components alignment.


Enum Constant Summary
Bottom
          Align bottom.
Center
          Align center horizontally.
Left
          Align left.
Middle
          Align center vertically.
Right
          Align right.
Top
          Align top.
 
Method Summary
static StiAligning forValue(int value)
           
 int getValue()
           
static StiAligning valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiAligning[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Left

public static final StiAligning Left
Align left.


Center

public static final StiAligning Center
Align center horizontally.


Right

public static final StiAligning Right
Align right.


Top

public static final StiAligning Top
Align top.


Middle

public static final StiAligning Middle
Align center vertically.


Bottom

public static final StiAligning Bottom
Align bottom.

Method Detail

values

public static StiAligning[] 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 (StiAligning c : StiAligning.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static StiAligning valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getValue

public int getValue()

forValue

public static StiAligning forValue(int value)