public static enum WildcardRef.BoundKind extends Enum<WildcardRef.BoundKind>
| Modifier and Type | Method and Description |
|---|---|
static WildcardRef.BoundKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WildcardRef.BoundKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WildcardRef.BoundKind EXTENDS
public static final WildcardRef.BoundKind SUPER
public static WildcardRef.BoundKind[] values()
for (WildcardRef.BoundKind c : WildcardRef.BoundKind.values()) System.out.println(c);
public static WildcardRef.BoundKind valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.