Enum JCoTraceLevel
- java.lang.Object
-
- java.lang.Enum<JCoTraceLevel>
-
- de.hybris.platform.sap.core.configuration.enums.JCoTraceLevel
-
- All Implemented Interfaces:
HybrisEnumValue,java.io.Serializable,java.lang.Comparable<JCoTraceLevel>
public enum JCoTraceLevel extends java.lang.Enum<JCoTraceLevel> implements HybrisEnumValue
Generated enum JCoTraceLevel declared at extension sapcoreconfiguration. This type determines the JCo trace level.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ERRORSGenerated enum value for JCoTraceLevel.ERRORS declared at extension sapcoreconfiguration.ERRORS_WARNINGSGenerated enum value for JCoTraceLevel.ERRORS_WARNINGS declared at extension sapcoreconfiguration.EXPATH_INFOS_ERRORS_WARNINGSGenerated enum value for JCoTraceLevel.EXPATH_INFOS_ERRORS_WARNINGS declared at extension sapcoreconfiguration.FULLEXPATH_DATADUMPS_VERBINFOS_ERRORS_WARNINGSGenerated enum value for JCoTraceLevel.FULLEXPATH_DATADUMPS_VERBINFOS_ERRORS_WARNINGS declared at extension sapcoreconfiguration.FULLEXPATH_FULLDATADUMPS_VERBINFOS_ERRORS_WARNINGSGenerated enum value for JCoTraceLevel.FULLEXPATH_FULLDATADUMPS_VERBINFOS_ERRORS_WARNINGS declared at extension sapcoreconfiguration.INFOS_ERRORS_WARNINGSGenerated enum value for JCoTraceLevel.INFOS_ERRORS_WARNINGS declared at extension sapcoreconfiguration.NO_TRACEGenerated enum value for JCoTraceLevel.NO_TRACE declared at extension sapcoreconfiguration.VERBEXPATH_INFOS_ERRORS_WARNINGSGenerated enum value for JCoTraceLevel.VERBEXPATH_INFOS_ERRORS_WARNINGS declared at extension sapcoreconfiguration.VERBEXPATH_LIMDATADUMPS_INFOS_ERRORS_WARNINGSGenerated enum value for JCoTraceLevel.VERBEXPATH_LIMDATADUMPS_INFOS_ERRORS_WARNINGS declared at extension sapcoreconfiguration.
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String_TYPECODEGenerated model type code constant.static java.lang.StringSIMPLE_CLASSNAMEGenerated simple class name constant.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCode()Gets the code of this enum value.java.lang.StringgetType()Gets the type this enum value belongs to.static JCoTraceLevelvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static JCoTraceLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_TRACE
public static final JCoTraceLevel NO_TRACE
Generated enum value for JCoTraceLevel.NO_TRACE declared at extension sapcoreconfiguration.
-
ERRORS
public static final JCoTraceLevel ERRORS
Generated enum value for JCoTraceLevel.ERRORS declared at extension sapcoreconfiguration.
-
ERRORS_WARNINGS
public static final JCoTraceLevel ERRORS_WARNINGS
Generated enum value for JCoTraceLevel.ERRORS_WARNINGS declared at extension sapcoreconfiguration.
-
INFOS_ERRORS_WARNINGS
public static final JCoTraceLevel INFOS_ERRORS_WARNINGS
Generated enum value for JCoTraceLevel.INFOS_ERRORS_WARNINGS declared at extension sapcoreconfiguration.
-
EXPATH_INFOS_ERRORS_WARNINGS
public static final JCoTraceLevel EXPATH_INFOS_ERRORS_WARNINGS
Generated enum value for JCoTraceLevel.EXPATH_INFOS_ERRORS_WARNINGS declared at extension sapcoreconfiguration.
-
VERBEXPATH_INFOS_ERRORS_WARNINGS
public static final JCoTraceLevel VERBEXPATH_INFOS_ERRORS_WARNINGS
Generated enum value for JCoTraceLevel.VERBEXPATH_INFOS_ERRORS_WARNINGS declared at extension sapcoreconfiguration.
-
VERBEXPATH_LIMDATADUMPS_INFOS_ERRORS_WARNINGS
public static final JCoTraceLevel VERBEXPATH_LIMDATADUMPS_INFOS_ERRORS_WARNINGS
Generated enum value for JCoTraceLevel.VERBEXPATH_LIMDATADUMPS_INFOS_ERRORS_WARNINGS declared at extension sapcoreconfiguration.
-
FULLEXPATH_DATADUMPS_VERBINFOS_ERRORS_WARNINGS
public static final JCoTraceLevel FULLEXPATH_DATADUMPS_VERBINFOS_ERRORS_WARNINGS
Generated enum value for JCoTraceLevel.FULLEXPATH_DATADUMPS_VERBINFOS_ERRORS_WARNINGS declared at extension sapcoreconfiguration.
-
FULLEXPATH_FULLDATADUMPS_VERBINFOS_ERRORS_WARNINGS
public static final JCoTraceLevel FULLEXPATH_FULLDATADUMPS_VERBINFOS_ERRORS_WARNINGS
Generated enum value for JCoTraceLevel.FULLEXPATH_FULLDATADUMPS_VERBINFOS_ERRORS_WARNINGS declared at extension sapcoreconfiguration.
-
-
Field Detail
-
_TYPECODE
public static final java.lang.String _TYPECODE
Generated model type code constant.- See Also:
- Constant Field Values
-
SIMPLE_CLASSNAME
public static final java.lang.String SIMPLE_CLASSNAME
Generated simple class name constant.- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static JCoTraceLevel[] 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 (JCoTraceLevel c : JCoTraceLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JCoTraceLevel 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
-
getCode
public java.lang.String getCode()
Gets the code of this enum value.- Specified by:
getCodein interfaceHybrisEnumValue- Returns:
- code of value
-
getType
public java.lang.String getType()
Gets the type this enum value belongs to.- Specified by:
getTypein interfaceHybrisEnumValue- Returns:
- code of type
-
-