com.stimulsoft.webdesigner.enums
Enum BarCodeGeomId

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

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

Copyright Stimulsoft


Enum Constant Summary
BaseDrawRectangle
           
BaseDrawString
           
BaseFillRectangle
           
BaseFillRectangle2D
           
BaseTransform
           
 
Method Summary
static BarCodeGeomId valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BarCodeGeomId[] 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

BaseTransform

public static final BarCodeGeomId BaseTransform

BaseFillRectangle

public static final BarCodeGeomId BaseFillRectangle

BaseFillRectangle2D

public static final BarCodeGeomId BaseFillRectangle2D

BaseDrawRectangle

public static final BarCodeGeomId BaseDrawRectangle

BaseDrawString

public static final BarCodeGeomId BaseDrawString
Method Detail

values

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

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

valueOf

public static BarCodeGeomId 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