Package org.cip4.jdflib.extensions
Enum ProductHelper.eProductType
- java.lang.Object
-
- java.lang.Enum<ProductHelper.eProductType>
-
- org.cip4.jdflib.extensions.ProductHelper.eProductType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ProductHelper.eProductType>
- Enclosing class:
- ProductHelper
public static enum ProductHelper.eProductType extends java.lang.Enum<ProductHelper.eProductType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BackCoverBlankBoxBlankSheetBlankWebBodyBookBookBlockBookCaseBookletBoxBrochureBusinessCardCartonCoverCoverBoardCoverLetterEndSheetEnvelopeFlatBoxFlatWorkFrontCoverInsertJacketLabelLeafletLetterMapMediaNewspaperNotebookPalletPostcardPosterProofResponseCardSectionSelfMailerSpineSpineBoardStackWrapAroundCover
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProductHelper.eProductTypegetEnum(java.lang.String val)static ProductHelper.eProductTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ProductHelper.eProductType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BackCover
public static final ProductHelper.eProductType BackCover
-
BlankBox
public static final ProductHelper.eProductType BlankBox
-
BlankSheet
public static final ProductHelper.eProductType BlankSheet
-
BlankWeb
public static final ProductHelper.eProductType BlankWeb
-
Body
public static final ProductHelper.eProductType Body
-
Book
public static final ProductHelper.eProductType Book
-
BookBlock
public static final ProductHelper.eProductType BookBlock
-
BookCase
public static final ProductHelper.eProductType BookCase
-
Booklet
public static final ProductHelper.eProductType Booklet
-
Box
public static final ProductHelper.eProductType Box
-
Brochure
public static final ProductHelper.eProductType Brochure
-
BusinessCard
public static final ProductHelper.eProductType BusinessCard
-
Carton
public static final ProductHelper.eProductType Carton
-
Cover
public static final ProductHelper.eProductType Cover
-
CoverBoard
public static final ProductHelper.eProductType CoverBoard
-
CoverLetter
public static final ProductHelper.eProductType CoverLetter
-
EndSheet
public static final ProductHelper.eProductType EndSheet
-
Envelope
public static final ProductHelper.eProductType Envelope
-
FlatBox
public static final ProductHelper.eProductType FlatBox
-
FlatWork
public static final ProductHelper.eProductType FlatWork
-
FrontCover
public static final ProductHelper.eProductType FrontCover
-
Insert
public static final ProductHelper.eProductType Insert
-
Jacket
public static final ProductHelper.eProductType Jacket
-
Label
public static final ProductHelper.eProductType Label
-
Leaflet
public static final ProductHelper.eProductType Leaflet
-
Letter
public static final ProductHelper.eProductType Letter
-
Map
public static final ProductHelper.eProductType Map
-
Media
public static final ProductHelper.eProductType Media
-
Newspaper
public static final ProductHelper.eProductType Newspaper
-
Notebook
public static final ProductHelper.eProductType Notebook
-
Pallet
public static final ProductHelper.eProductType Pallet
-
Postcard
public static final ProductHelper.eProductType Postcard
-
Poster
public static final ProductHelper.eProductType Poster
-
Proof
public static final ProductHelper.eProductType Proof
-
ResponseCard
public static final ProductHelper.eProductType ResponseCard
-
Section
public static final ProductHelper.eProductType Section
-
SelfMailer
public static final ProductHelper.eProductType SelfMailer
-
Spine
public static final ProductHelper.eProductType Spine
-
SpineBoard
public static final ProductHelper.eProductType SpineBoard
-
Stack
public static final ProductHelper.eProductType Stack
-
WrapAroundCover
public static final ProductHelper.eProductType WrapAroundCover
-
-
Method Detail
-
values
public static ProductHelper.eProductType[] 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 (ProductHelper.eProductType c : ProductHelper.eProductType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProductHelper.eProductType 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 namejava.lang.NullPointerException- if the argument is null
-
getEnum
public static ProductHelper.eProductType getEnum(java.lang.String val)
-
-