Enum AResource.AResourceTreeTraversalDepth
- java.lang.Object
-
- java.lang.Enum<AResource.AResourceTreeTraversalDepth>
-
- org.faktorips.devtools.abstraction.AResource.AResourceTreeTraversalDepth
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AResource.AResourceTreeTraversalDepth>
- Enclosing interface:
- AResource
public static enum AResource.AResourceTreeTraversalDepth extends java.lang.Enum<AResource.AResourceTreeTraversalDepth>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INFINITEThis resource and its direct and indirect members at any depth.RESOURCE_AND_DIRECT_MEMBERSThis resource and its direct members.RESOURCE_ONLYThis resource, but not any of its members.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AResource.AResourceTreeTraversalDepthdecrement()static AResource.AResourceTreeTraversalDepthvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AResource.AResourceTreeTraversalDepth[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESOURCE_ONLY
public static final AResource.AResourceTreeTraversalDepth RESOURCE_ONLY
This resource, but not any of its members.
-
RESOURCE_AND_DIRECT_MEMBERS
public static final AResource.AResourceTreeTraversalDepth RESOURCE_AND_DIRECT_MEMBERS
This resource and its direct members.
-
INFINITE
public static final AResource.AResourceTreeTraversalDepth INFINITE
This resource and its direct and indirect members at any depth.
-
-
Method Detail
-
values
public static AResource.AResourceTreeTraversalDepth[] 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 (AResource.AResourceTreeTraversalDepth c : AResource.AResourceTreeTraversalDepth.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AResource.AResourceTreeTraversalDepth 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
-
decrement
public AResource.AResourceTreeTraversalDepth decrement()
-
-