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

com.devsmart.ubjson.UBInt64 Maven / Gradle / Ivy

package com.devsmart.ubjson;


public final class UBInt64 extends UBValue {

    private long mValue;

    UBInt64(long value) {
        mValue = value;
    }

    @Override
    public Type getType() {
        return Type.Int64;
    }

    public long getInt() {
        return mValue;
    }

    @Override
    public String toString() {
        return Long.toString(getInt());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy