public static enum ZUC.ZUCAlgorithm extends Enum<ZUC.ZUCAlgorithm>
Modifier and Type | Method and Description |
---|---|
String |
getValue()
获得算法的字符串表示形式
|
static ZUC.ZUCAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ZUC.ZUCAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZUC.ZUCAlgorithm ZUC_128
public static final ZUC.ZUCAlgorithm ZUC_256
public static ZUC.ZUCAlgorithm[] values()
for (ZUC.ZUCAlgorithm c : ZUC.ZUCAlgorithm.values()) System.out.println(c);
public static ZUC.ZUCAlgorithm 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 nullpublic String getValue()
Copyright © 2024. All rights reserved.