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

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

package com.devsmart.ubjson;


public final class UBInt32 extends UBValue {

    private int mValue;

    UBInt32(long value) {
        mValue = (int) value;
    }

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

    public int getInt() {
        return mValue;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy