public enum ECryptoAlgorithmSign extends Enum<ECryptoAlgorithmSign> implements com.helger.commons.id.IHasID<String>
| Enum Constant and Description |
|---|
RSA_SHA_256 |
RSA_SHA_384 |
RSA_SHA_512 |
| Modifier and Type | Field and Description |
|---|---|
static ECryptoAlgorithmSign |
SIGN_ALGORITHM_DEFAULT |
| Modifier and Type | Method and Description |
|---|---|
String |
getAlgorithmURI() |
static ECryptoAlgorithmSign |
getFromIDOrDefault(String sID,
ECryptoAlgorithmSign eDefault) |
static ECryptoAlgorithmSign |
getFromIDOrNull(String sID) |
static ECryptoAlgorithmSign |
getFromIDOrThrow(String sID) |
static ECryptoAlgorithmSign |
getFromURIOrNull(String sURI) |
String |
getID() |
static ECryptoAlgorithmSign |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ECryptoAlgorithmSign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ECryptoAlgorithmSign RSA_SHA_256
public static final ECryptoAlgorithmSign RSA_SHA_384
public static final ECryptoAlgorithmSign RSA_SHA_512
public static final ECryptoAlgorithmSign SIGN_ALGORITHM_DEFAULT
public static ECryptoAlgorithmSign[] values()
for (ECryptoAlgorithmSign c : ECryptoAlgorithmSign.values()) System.out.println(c);
public static ECryptoAlgorithmSign 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 null@Nonnull @Nonempty public String getID()
getID in interface com.helger.commons.id.IHasID<String>@Nullable public static ECryptoAlgorithmSign getFromIDOrNull(@Nullable String sID)
@Nonnull public static ECryptoAlgorithmSign getFromIDOrThrow(@Nullable String sID)
@Nullable public static ECryptoAlgorithmSign getFromIDOrDefault(@Nullable String sID, @Nullable ECryptoAlgorithmSign eDefault)
@Nullable public static ECryptoAlgorithmSign getFromURIOrNull(@Nullable String sURI)
Copyright © 2015–2020 Philip Helger. All rights reserved.