Enum StructureTypeMode
- java.lang.Object
-
- java.lang.Enum<StructureTypeMode>
-
- de.hybris.platform.cmssmarteditwebservices.data.StructureTypeMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<StructureTypeMode>
@Deprecated(forRemoval=true) public enum StructureTypeMode extends java.lang.Enum<StructureTypeMode>
Deprecated, for removal: This API element is subject to removal in a future version.since 1811, please use de.hybris.platform.cmsfacades.data.StructureTypeMode instead.StructureTypeMode.BASE is used to tag attributes defined outside of this extension.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDDeprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.ADDvalue defined at extensioncmssmarteditwebservices.BASEDeprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.BASEvalue defined at extensioncmssmarteditwebservices.CATEGORYDeprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.CATEGORYvalue defined at extensioncmssmarteditwebservices.CONTENTDeprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.CONTENTvalue defined at extensioncmssmarteditwebservices.CREATEDeprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.CREATEvalue defined at extensioncmssmarteditwebservices.DEFAULTDeprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.DEFAULTvalue defined at extensioncmssmarteditwebservices.EDITDeprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.EDITvalue defined at extensioncmssmarteditwebservices.EXTERNALDeprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.EXTERNALvalue defined at extensioncmssmarteditwebservices.PRODUCTDeprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.PRODUCTvalue defined at extensioncmssmarteditwebservices.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static StructureTypeModevalueOf(java.lang.String name)Deprecated, for removal: This API element is subject to removal in a future version.Returns the enum constant of this type with the specified name.static StructureTypeMode[]values()Deprecated, for removal: This API element is subject to removal in a future version.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASE
public static final StructureTypeMode BASE
Deprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.BASEvalue defined at extensioncmssmarteditwebservices.
-
DEFAULT
public static final StructureTypeMode DEFAULT
Deprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.DEFAULTvalue defined at extensioncmssmarteditwebservices.
-
ADD
public static final StructureTypeMode ADD
Deprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.ADDvalue defined at extensioncmssmarteditwebservices.
-
CREATE
public static final StructureTypeMode CREATE
Deprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.CREATEvalue defined at extensioncmssmarteditwebservices.
-
EDIT
public static final StructureTypeMode EDIT
Deprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.EDITvalue defined at extensioncmssmarteditwebservices.
-
CONTENT
public static final StructureTypeMode CONTENT
Deprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.CONTENTvalue defined at extensioncmssmarteditwebservices.
-
PRODUCT
public static final StructureTypeMode PRODUCT
Deprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.PRODUCTvalue defined at extensioncmssmarteditwebservices.
-
CATEGORY
public static final StructureTypeMode CATEGORY
Deprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.CATEGORYvalue defined at extensioncmssmarteditwebservices.
-
EXTERNAL
public static final StructureTypeMode EXTERNAL
Deprecated, for removal: This API element is subject to removal in a future version.Generated enum value forStructureTypeMode.EXTERNALvalue defined at extensioncmssmarteditwebservices.
-
-
Method Detail
-
values
public static StructureTypeMode[] values()
Deprecated, for removal: This API element is subject to removal in a future version.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 (StructureTypeMode c : StructureTypeMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StructureTypeMode valueOf(java.lang.String name)
Deprecated, for removal: This API element is subject to removal in a future version.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
-
-