Package net.bytebuddy.pool
Enum TypePool.Default.LazyTypeDescription.TypeContainment.SelfContained
- java.lang.Object
-
- java.lang.Enum<TypePool.Default.LazyTypeDescription.TypeContainment.SelfContained>
-
- net.bytebuddy.pool.TypePool.Default.LazyTypeDescription.TypeContainment.SelfContained
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TypePool.Default.LazyTypeDescription.TypeContainment.SelfContained>,TypePool.Default.LazyTypeDescription.TypeContainment
- Enclosing interface:
- TypePool.Default.LazyTypeDescription.TypeContainment
public static enum TypePool.Default.LazyTypeDescription.TypeContainment.SelfContained extends java.lang.Enum<TypePool.Default.LazyTypeDescription.TypeContainment.SelfContained> implements TypePool.Default.LazyTypeDescription.TypeContainment
Describes a type that is not contained within another type, a method or a constructor.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.bytebuddy.pool.TypePool.Default.LazyTypeDescription.TypeContainment
TypePool.Default.LazyTypeDescription.TypeContainment.SelfContained, TypePool.Default.LazyTypeDescription.TypeContainment.WithinMethod, TypePool.Default.LazyTypeDescription.TypeContainment.WithinType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCEThe singleton instance.
-
Constructor Summary
Constructors Modifier Constructor Description privateSelfContained()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description MethodDescription.InDefinedShapegetEnclosingMethod(TypePool typePool)Returns the enclosing method ornullif no such method exists.TypeDescriptiongetEnclosingType(TypePool typePool)Returns the enclosing type ornullif no such type exists.booleanisLocalType()Returnstrueif the type is a local type unless it is an anonymous type.booleanisSelfContained()Returnstrueif the type is self-contained.static TypePool.Default.LazyTypeDescription.TypeContainment.SelfContainedvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TypePool.Default.LazyTypeDescription.TypeContainment.SelfContained[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSTANCE
public static final TypePool.Default.LazyTypeDescription.TypeContainment.SelfContained INSTANCE
The singleton instance.
-
-
Method Detail
-
values
public static TypePool.Default.LazyTypeDescription.TypeContainment.SelfContained[] 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 (TypePool.Default.LazyTypeDescription.TypeContainment.SelfContained c : TypePool.Default.LazyTypeDescription.TypeContainment.SelfContained.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TypePool.Default.LazyTypeDescription.TypeContainment.SelfContained 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
-
getEnclosingMethod
public MethodDescription.InDefinedShape getEnclosingMethod(TypePool typePool)
Returns the enclosing method ornullif no such method exists.- Specified by:
getEnclosingMethodin interfaceTypePool.Default.LazyTypeDescription.TypeContainment- Parameters:
typePool- The type pool to be used for looking up linked types.- Returns:
- A method description describing the linked type or
null.
-
getEnclosingType
public TypeDescription getEnclosingType(TypePool typePool)
Returns the enclosing type ornullif no such type exists.- Specified by:
getEnclosingTypein interfaceTypePool.Default.LazyTypeDescription.TypeContainment- Parameters:
typePool- The type pool to be used for looking up linked types.- Returns:
- A type description describing the linked type or
null.
-
isSelfContained
public boolean isSelfContained()
Returnstrueif the type is self-contained.- Specified by:
isSelfContainedin interfaceTypePool.Default.LazyTypeDescription.TypeContainment- Returns:
trueif the type is self-contained.
-
isLocalType
public boolean isLocalType()
Returnstrueif the type is a local type unless it is an anonymous type.- Specified by:
isLocalTypein interfaceTypePool.Default.LazyTypeDescription.TypeContainment- Returns:
trueif the type is a local type unless it is an anonymous type
-
-