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