Package yapion.utils
Enum RecursionUtils.RecursionType
- java.lang.Object
-
- java.lang.Enum<RecursionUtils.RecursionType>
-
- yapion.utils.RecursionUtils.RecursionType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RecursionUtils.RecursionType>
,java.lang.constant.Constable
- Enclosing class:
- RecursionUtils
public static enum RecursionUtils.RecursionType extends java.lang.Enum<RecursionUtils.RecursionType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACK_REFERENCE
DIRECT
NONE
-
Method Summary
Modifier and Type Method Description static RecursionUtils.RecursionType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RecursionUtils.RecursionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DIRECT
public static final RecursionUtils.RecursionType DIRECT
-
BACK_REFERENCE
public static final RecursionUtils.RecursionType BACK_REFERENCE
-
NONE
public static final RecursionUtils.RecursionType NONE
-
-
Method Detail
-
values
public static RecursionUtils.RecursionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RecursionUtils.RecursionType 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
-
-