Package odata.msgraph.client.complex
Class NumberColumn
- java.lang.Object
-
- odata.msgraph.client.complex.NumberColumn
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataType
public class NumberColumn extends Object implements com.github.davidmoten.odata.client.ODataType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classNumberColumn.Builder
-
Field Summary
Fields Modifier and Type Field Description protected com.github.davidmoten.odata.client.ContextPathcontextPathprotected StringdecimalPlacesprotected StringdisplayAsprotected Doublemaximumprotected Doubleminimumprotected StringodataTypeprotected com.github.davidmoten.odata.client.internal.UnmappedFieldsImplunmappedFields
-
Constructor Summary
Constructors Modifier Constructor Description protectedNumberColumn()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NumberColumn.Builderbuilder()Returns a builder which is used to create a new instance of this class (given that this class is immutable).Optional<String>getDecimalPlaces()Optional<String>getDisplayAs()Optional<Double>getMaximum()Optional<Double>getMinimum()com.github.davidmoten.odata.client.UnmappedFieldsgetUnmappedFields()StringodataTypeName()voidpostInject(boolean addKeysToContextPath)StringtoString()NumberColumnwithDecimalPlaces(String decimalPlaces)NumberColumnwithDisplayAs(String displayAs)NumberColumnwithMaximum(Double maximum)NumberColumnwithMinimum(Double minimum)NumberColumnwithUnmappedField(String name, Object value)
-
-
-
Field Detail
-
contextPath
protected com.github.davidmoten.odata.client.ContextPath contextPath
-
unmappedFields
protected com.github.davidmoten.odata.client.internal.UnmappedFieldsImpl unmappedFields
-
odataType
protected String odataType
-
decimalPlaces
protected String decimalPlaces
-
displayAs
protected String displayAs
-
maximum
protected Double maximum
-
minimum
protected Double minimum
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType
-
withDecimalPlaces
public NumberColumn withDecimalPlaces(String decimalPlaces)
-
withDisplayAs
public NumberColumn withDisplayAs(String displayAs)
-
withMaximum
public NumberColumn withMaximum(Double maximum)
-
withMinimum
public NumberColumn withMinimum(Double minimum)
-
withUnmappedField
public NumberColumn withUnmappedField(String name, Object value)
-
getUnmappedFields
public com.github.davidmoten.odata.client.UnmappedFields getUnmappedFields()
- Specified by:
getUnmappedFieldsin interfacecom.github.davidmoten.odata.client.ODataType
-
postInject
public void postInject(boolean addKeysToContextPath)
- Specified by:
postInjectin interfacecom.github.davidmoten.odata.client.ODataType
-
builder
public static NumberColumn.Builder builder()
Returns a builder which is used to create a new instance of this class (given that this class is immutable).- Returns:
- a new Builder for this class
-
-