public static enum Endpoint.Protocol extends Enum<Endpoint.Protocol>
| Modifier and Type | Method and Description |
|---|---|
static Endpoint.Protocol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Endpoint.Protocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Endpoint.Protocol HTTP
public static final Endpoint.Protocol HTTPS
public static Endpoint.Protocol[] values()
for (Endpoint.Protocol c : Endpoint.Protocol.values()) System.out.println(c);
public static Endpoint.Protocol 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.