
com.github.davidmoten.odata.client.edm.UnsignedByte Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-client-runtime Show documentation
Show all versions of odata-client-runtime Show documentation
OData client runtime for use with generated code
The newest version!
package com.github.davidmoten.odata.client.edm;
import com.fasterxml.jackson.annotation.JsonValue;
public final class UnsignedByte {
@JsonValue
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