com.stimulsoft.report.components.enums
Enum StiEmptySizeMode

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

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


Enum Constant Summary
AlignFooterToBottom
           
AlignFooterToTop
           
DecreaseLastRow
           
IncreaseLastRow
           
 
Method Summary
static StiEmptySizeMode forValue(int value)
           
 int getValue()
           
static StiEmptySizeMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiEmptySizeMode[] 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

IncreaseLastRow

public static final StiEmptySizeMode IncreaseLastRow

DecreaseLastRow

public static final StiEmptySizeMode DecreaseLastRow

AlignFooterToBottom

public static final StiEmptySizeMode AlignFooterToBottom

AlignFooterToTop

public static final StiEmptySizeMode AlignFooterToTop
Method Detail

values

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

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

valueOf

public static StiEmptySizeMode 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 StiEmptySizeMode forValue(int value)