net.sf.dynamicreports.report.constant
Enum BooleanComponentType

java.lang.Object
  extended by java.lang.Enum<BooleanComponentType>
      extended by net.sf.dynamicreports.report.constant.BooleanComponentType
All Implemented Interfaces:
Serializable, Comparable<BooleanComponentType>

public enum BooleanComponentType
extends Enum<BooleanComponentType>

Author:
Ricardo Mariaca (r.mariaca@dynamicreports.org)

Enum Constant Summary
IMAGE_BALL
          Shows a ball image
IMAGE_CHECKBOX_1
          Shows a check box image
IMAGE_CHECKBOX_2
          Shows a check box image
IMAGE_STYLE_1
          Shows an image
IMAGE_STYLE_2
          Shows an image
IMAGE_STYLE_3
          Shows an image
IMAGE_STYLE_4
          Shows an image
TEXT_TRUE_FALSE
          Shows a text value (true/false)
TEXT_YES_NO
          Shows a text value (yes/no)
 
Method Summary
static BooleanComponentType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BooleanComponentType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TEXT_TRUE_FALSE

public static final BooleanComponentType TEXT_TRUE_FALSE
Shows a text value (true/false)


TEXT_YES_NO

public static final BooleanComponentType TEXT_YES_NO
Shows a text value (yes/no)


IMAGE_STYLE_1

public static final BooleanComponentType IMAGE_STYLE_1
Shows an image


IMAGE_STYLE_2

public static final BooleanComponentType IMAGE_STYLE_2
Shows an image


IMAGE_STYLE_3

public static final BooleanComponentType IMAGE_STYLE_3
Shows an image


IMAGE_STYLE_4

public static final BooleanComponentType IMAGE_STYLE_4
Shows an image


IMAGE_BALL

public static final BooleanComponentType IMAGE_BALL
Shows a ball image


IMAGE_CHECKBOX_1

public static final BooleanComponentType IMAGE_CHECKBOX_1
Shows a check box image


IMAGE_CHECKBOX_2

public static final BooleanComponentType IMAGE_CHECKBOX_2
Shows a check box image

Method Detail

values

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

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

valueOf

public static BooleanComponentType 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 name
NullPointerException - if the argument is null


Copyright © 2010-2014. All Rights Reserved.