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 SummaryEnum Constants Enum Constant Description BACK_REFERENCEDIRECTNONE
 - 
Method SummaryModifier and Type Method Description static RecursionUtils.RecursionTypevalueOf(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- 
DIRECTpublic static final RecursionUtils.RecursionType DIRECT 
 - 
BACK_REFERENCEpublic static final RecursionUtils.RecursionType BACK_REFERENCE 
 - 
NONEpublic static final RecursionUtils.RecursionType NONE 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-