Package org.sonar.java.resolve
Enum WildCardType.BoundType
- java.lang.Object
-
- java.lang.Enum<WildCardType.BoundType>
-
- org.sonar.java.resolve.WildCardType.BoundType
-
- All Implemented Interfaces:
Serializable,Comparable<WildCardType.BoundType>
- Enclosing class:
- WildCardType
public static enum WildCardType.BoundType extends Enum<WildCardType.BoundType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static WildCardType.BoundTypevalueOf(String name)Returns the enum constant of this type with the specified name.static WildCardType.BoundType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNBOUNDED
public static final WildCardType.BoundType UNBOUNDED
-
SUPER
public static final WildCardType.BoundType SUPER
-
EXTENDS
public static final WildCardType.BoundType EXTENDS
-
-
Method Detail
-
values
public static WildCardType.BoundType[] 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 (WildCardType.BoundType c : WildCardType.BoundType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WildCardType.BoundType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<WildCardType.BoundType>
-
-