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