s.fisco-bcos-tars-sdk.3.5.0.source-code.KeyPairType Maven / Gradle / Ivy
The newest version!
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (https://www.swig.org).
* Version 4.1.1
*
* Do not make changes to this file unless you know what you are doing - modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package org.fisco.bcos.sdk.tars;
public final class KeyPairType {
public final static KeyPairType Secp256K1 = new KeyPairType("Secp256K1", bcosJNI.KeyPairType_Secp256K1_get());
public final static KeyPairType SM2 = new KeyPairType("SM2", bcosJNI.KeyPairType_SM2_get());
public final static KeyPairType Ed25519 = new KeyPairType("Ed25519", bcosJNI.KeyPairType_Ed25519_get());
public final static KeyPairType HsmSM2 = new KeyPairType("HsmSM2", bcosJNI.KeyPairType_HsmSM2_get());
public final int swigValue() {
return swigValue;
}
public String toString() {
return swigName;
}
public static KeyPairType swigToEnum(int swigValue) {
if (swigValue < swigValues.length && swigValue >= 0 && swigValues[swigValue].swigValue == swigValue)
return swigValues[swigValue];
for (int i = 0; i < swigValues.length; i++)
if (swigValues[i].swigValue == swigValue)
return swigValues[i];
throw new IllegalArgumentException("No enum " + KeyPairType.class + " with value " + swigValue);
}
private KeyPairType(String swigName) {
this.swigName = swigName;
this.swigValue = swigNext++;
}
private KeyPairType(String swigName, int swigValue) {
this.swigName = swigName;
this.swigValue = swigValue;
swigNext = swigValue+1;
}
private KeyPairType(String swigName, KeyPairType swigEnum) {
this.swigName = swigName;
this.swigValue = swigEnum.swigValue;
swigNext = this.swigValue+1;
}
private static KeyPairType[] swigValues = { Secp256K1, SM2, Ed25519, HsmSM2 };
private static int swigNext = 0;
private final int swigValue;
private final String swigName;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy