s.fisco-bcos-tars-sdk.3.5.0.source-code.HashImplType 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 HashImplType {
public final static HashImplType Keccak256Hash = new HashImplType("Keccak256Hash");
public final static HashImplType Sm3Hash = new HashImplType("Sm3Hash");
public final static HashImplType Sha3 = new HashImplType("Sha3");
public final int swigValue() {
return swigValue;
}
public String toString() {
return swigName;
}
public static HashImplType 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 " + HashImplType.class + " with value " + swigValue);
}
private HashImplType(String swigName) {
this.swigName = swigName;
this.swigValue = swigNext++;
}
private HashImplType(String swigName, int swigValue) {
this.swigName = swigName;
this.swigValue = swigValue;
swigNext = swigValue+1;
}
private HashImplType(String swigName, HashImplType swigEnum) {
this.swigName = swigName;
this.swigValue = swigEnum.swigValue;
swigNext = this.swigValue+1;
}
private static HashImplType[] swigValues = { Keccak256Hash, Sm3Hash, Sha3 };
private static int swigNext = 0;
private final int swigValue;
private final String swigName;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy