Enum FMConstants.CoreAssetType
- java.lang.Object
-
- java.lang.Enum<FMConstants.CoreAssetType>
-
- com.adobe.aem.formsndocuments.util.FMConstants.CoreAssetType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FMConstants.CoreAssetType>
- Enclosing class:
- FMConstants
public static enum FMConstants.CoreAssetType extends java.lang.Enum<FMConstants.CoreAssetType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADAPTIVEDOCUMENTAFFRAGMENTALLDOCUMENT_TEMPLATEFOLDERFORMFORMDATAMODELFORMSETGUIDENONFMASSETPDFFORMPRINTFORMRESOURCETHEME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FMConstants.CoreAssetTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FMConstants.CoreAssetType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FORM
public static final FMConstants.CoreAssetType FORM
-
PDFFORM
public static final FMConstants.CoreAssetType PDFFORM
-
PRINTFORM
public static final FMConstants.CoreAssetType PRINTFORM
-
FOLDER
public static final FMConstants.CoreAssetType FOLDER
-
RESOURCE
public static final FMConstants.CoreAssetType RESOURCE
-
GUIDE
public static final FMConstants.CoreAssetType GUIDE
-
FORMSET
public static final FMConstants.CoreAssetType FORMSET
-
AFFRAGMENT
public static final FMConstants.CoreAssetType AFFRAGMENT
-
ADAPTIVEDOCUMENT
public static final FMConstants.CoreAssetType ADAPTIVEDOCUMENT
-
THEME
public static final FMConstants.CoreAssetType THEME
-
NONFMASSET
public static final FMConstants.CoreAssetType NONFMASSET
-
FORMDATAMODEL
public static final FMConstants.CoreAssetType FORMDATAMODEL
-
DOCUMENT_TEMPLATE
public static final FMConstants.CoreAssetType DOCUMENT_TEMPLATE
-
ALL
public static final FMConstants.CoreAssetType ALL
-
-
Method Detail
-
values
public static FMConstants.CoreAssetType[] 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 (FMConstants.CoreAssetType c : FMConstants.CoreAssetType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FMConstants.CoreAssetType 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
-
-