net.sf.dynamicreports.report.constant
Enum BarbecueType

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

public enum BarbecueType
extends Enum<BarbecueType>

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

Enum Constant Summary
BARCODE_2OF7
           
BARCODE_3OF9
           
BOOKLAND
           
CODABAR
           
CODE128
           
CODE128A
           
CODE128B
           
CODE128C
           
CODE39
           
CODE39_EXTENDED
           
EAN128
           
EAN13
           
GLOBAL_TRADE_ITEM_NUMBER
           
INT_2OF5
           
MONARCH
           
NW7
           
PDF417
           
POSTNET
           
RANDOM_WEIGHT_UPCA
           
SCC14_SHIPPING_CODE
           
SHIPMENT_IDENTIFICATION_NUMBER
           
SSCC18
           
STD_2OF5
           
UCC128
           
UPCA
           
USD3
           
USD4
           
USPS
           
 
Method Summary
static BarbecueType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BarbecueType[] 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

BARCODE_2OF7

public static final BarbecueType BARCODE_2OF7

BARCODE_3OF9

public static final BarbecueType BARCODE_3OF9

BOOKLAND

public static final BarbecueType BOOKLAND

CODABAR

public static final BarbecueType CODABAR

CODE128

public static final BarbecueType CODE128

CODE128A

public static final BarbecueType CODE128A

CODE128B

public static final BarbecueType CODE128B

CODE128C

public static final BarbecueType CODE128C

CODE39

public static final BarbecueType CODE39

CODE39_EXTENDED

public static final BarbecueType CODE39_EXTENDED

EAN128

public static final BarbecueType EAN128

EAN13

public static final BarbecueType EAN13

GLOBAL_TRADE_ITEM_NUMBER

public static final BarbecueType GLOBAL_TRADE_ITEM_NUMBER

INT_2OF5

public static final BarbecueType INT_2OF5

MONARCH

public static final BarbecueType MONARCH

NW7

public static final BarbecueType NW7

PDF417

public static final BarbecueType PDF417

POSTNET

public static final BarbecueType POSTNET

RANDOM_WEIGHT_UPCA

public static final BarbecueType RANDOM_WEIGHT_UPCA

SCC14_SHIPPING_CODE

public static final BarbecueType SCC14_SHIPPING_CODE

SHIPMENT_IDENTIFICATION_NUMBER

public static final BarbecueType SHIPMENT_IDENTIFICATION_NUMBER

SSCC18

public static final BarbecueType SSCC18

STD_2OF5

public static final BarbecueType STD_2OF5

UCC128

public static final BarbecueType UCC128

UPCA

public static final BarbecueType UPCA

USD3

public static final BarbecueType USD3

USD4

public static final BarbecueType USD4

USPS

public static final BarbecueType USPS
Method Detail

values

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

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

valueOf

public static BarbecueType 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.