All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fastjson.bnsf.holders.array.VarIntArrayHolder Maven / Gradle / Ivy

There is a newer version: 0.34
Show newest version
package io.fastjson.bnsf.holders.array;

import io.fastjson.bnsf.WireValueType;
import io.fastjson.bnsf.holders.WireValueHolder;

import java.math.BigInteger;

/**
 * Created by Richard on 9/25/14.
 */
public class VarIntArrayHolder implements WireValueHolder {

    private BigInteger[] value;

    @Override
    public WireValueType type() {
        return WireValueType.VAR_INT_ARRAY;
    }

    public BigInteger[] getValue() {
        return value;
    }

    public void setValue(BigInteger[] value) {
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy