Package com._1c.g5.v8.dt.ws.common
Enum WSDefinitionLoader.Certificate.CertificateSelectMode
- java.lang.Object
-
- java.lang.Enum<WSDefinitionLoader.Certificate.CertificateSelectMode>
-
- com._1c.g5.v8.dt.ws.common.WSDefinitionLoader.Certificate.CertificateSelectMode
-
- All Implemented Interfaces:
Serializable
,Comparable<WSDefinitionLoader.Certificate.CertificateSelectMode>
- Enclosing class:
- WSDefinitionLoader.Certificate
public static enum WSDefinitionLoader.Certificate.CertificateSelectMode extends Enum<WSDefinitionLoader.Certificate.CertificateSelectMode>
Type of choose of client certificate for windows. Linux doesn't support it.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
Gets integer value of CertificateSelectModestatic WSDefinitionLoader.Certificate.CertificateSelectMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static WSDefinitionLoader.Certificate.CertificateSelectMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANY
public static final WSDefinitionLoader.Certificate.CertificateSelectMode ANY
-
RECENT
public static final WSDefinitionLoader.Certificate.CertificateSelectMode RECENT
-
CHOOSE
public static final WSDefinitionLoader.Certificate.CertificateSelectMode CHOOSE
-
-
Method Detail
-
values
public static WSDefinitionLoader.Certificate.CertificateSelectMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WSDefinitionLoader.Certificate.CertificateSelectMode c : WSDefinitionLoader.Certificate.CertificateSelectMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WSDefinitionLoader.Certificate.CertificateSelectMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public int getValue()
Gets integer value of CertificateSelectMode- Returns:
- integer value of CertificateSelectMode
-
-