public static enum SipSecurity.TransportGuarantee extends Enum<SipSecurity.TransportGuarantee>
Enum Constant and Description |
---|
CONFIDENTIAL
All user data must be encrypted by the transport (typically using SSL/TLS).
|
NONE
no protection of user data must be performed by the transport.
|
Modifier and Type | Method and Description |
---|---|
static SipSecurity.TransportGuarantee |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SipSecurity.TransportGuarantee[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SipSecurity.TransportGuarantee CONFIDENTIAL
public static final SipSecurity.TransportGuarantee NONE
public static SipSecurity.TransportGuarantee[] values()
for (SipSecurity.TransportGuarantee c : SipSecurity.TransportGuarantee.values()) System.out.println(c);
public static SipSecurity.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 © 1996-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.