public enum AltName extends Enum<AltName>
| Modifier and Type | Method and Description |
|---|---|
static AltName |
from(String value) |
static AltName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AltName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AltName DNS
public static final AltName IP
public static final AltName EMAIL
public static final AltName URI
public static final AltName UPN
public final String value
public static AltName[] values()
for (AltName c : AltName.values()) System.out.println(c);
public static AltName 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 © 2021. All rights reserved.