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