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

com.github.davidmoten.odata.client.edm.UnsignedByte Maven / Gradle / Ivy

package com.github.davidmoten.odata.client.edm;

public final class UnsignedByte {
    private int value;

    public UnsignedByte(int value) {
        this.value = value;
    }

    public int getValue() {
        return value;
    }

    public void setValue(int value) {
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy