public enum CryptoOperationRequirementLevel extends Enum<CryptoOperationRequirementLevel>
| 列挙型定数と説明 |
|---|
always
Indicates that the operation must always be performed.
|
conditional
Indicates that the operation should only be performed if the binding/transport does not provide equivalent protection.
|
never
Indicates the operation should never be performed.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
static CryptoOperationRequirementLevel |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static CryptoOperationRequirementLevel[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final CryptoOperationRequirementLevel always
public static final CryptoOperationRequirementLevel conditional
public static final CryptoOperationRequirementLevel never
public static CryptoOperationRequirementLevel[] values()
for(CryptoOperationRequirementLevel c: CryptoOperationRequirementLevel.values()) System.out.println(c);
public static CryptoOperationRequirementLevel valueOf(String name)
name返される列挙型定数の名前 - IllegalArgumentException指定された名前を持つ定数を - この列挙型が持っていない場合NullPointerException引数がnullの場合Copyright © 2012. All Rights Reserved.