Package odata.msgraph.client.complex
Class TextColumn
- java.lang.Object
-
- odata.msgraph.client.complex.TextColumn
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataType
public class TextColumn extends Object implements com.github.davidmoten.odata.client.ODataType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTextColumn.Builder
-
Field Summary
Fields Modifier and Type Field Description protected BooleanallowMultipleLinesprotected BooleanappendChangesToExistingTextprotected com.github.davidmoten.odata.client.ContextPathcontextPathprotected IntegerlinesForEditingprotected IntegermaxLengthprotected StringodataTypeprotected StringtextTypeprotected com.github.davidmoten.odata.client.internal.UnmappedFieldsImplunmappedFields
-
Constructor Summary
Constructors Modifier Constructor Description protectedTextColumn()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TextColumn.Builderbuilder()Returns a builder which is used to create a new instance of this class (given that this class is immutable).Optional<Boolean>getAllowMultipleLines()Optional<Boolean>getAppendChangesToExistingText()Optional<Integer>getLinesForEditing()Optional<Integer>getMaxLength()Optional<String>getTextType()com.github.davidmoten.odata.client.UnmappedFieldsgetUnmappedFields()StringodataTypeName()voidpostInject(boolean addKeysToContextPath)StringtoString()TextColumnwithAllowMultipleLines(Boolean allowMultipleLines)TextColumnwithAppendChangesToExistingText(Boolean appendChangesToExistingText)TextColumnwithLinesForEditing(Integer linesForEditing)TextColumnwithMaxLength(Integer maxLength)TextColumnwithTextType(String textType)TextColumnwithUnmappedField(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
-
allowMultipleLines
protected Boolean allowMultipleLines
-
appendChangesToExistingText
protected Boolean appendChangesToExistingText
-
linesForEditing
protected Integer linesForEditing
-
maxLength
protected Integer maxLength
-
textType
protected String textType
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType
-
withAllowMultipleLines
public TextColumn withAllowMultipleLines(Boolean allowMultipleLines)
-
withAppendChangesToExistingText
public TextColumn withAppendChangesToExistingText(Boolean appendChangesToExistingText)
-
withLinesForEditing
public TextColumn withLinesForEditing(Integer linesForEditing)
-
withMaxLength
public TextColumn withMaxLength(Integer maxLength)
-
withTextType
public TextColumn withTextType(String textType)
-
withUnmappedField
public TextColumn 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 TextColumn.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
-
-