![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.authorization.fluent.models.MicrosoftGraphChoiceColumn Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.authorization.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* choiceColumn.
*/
@Fluent
public final class MicrosoftGraphChoiceColumn implements JsonSerializable {
/*
* If true, allows custom values that aren't in the configured choices.
*/
private Boolean allowTextEntry;
/*
* The list of values available for this column.
*/
private List choices;
/*
* How the choices are to be presented in the UX. Must be one of checkBoxes, dropDownMenu, or radioButtons
*/
private String displayAs;
/*
* choiceColumn
*/
private Map additionalProperties;
/**
* Creates an instance of MicrosoftGraphChoiceColumn class.
*/
public MicrosoftGraphChoiceColumn() {
}
/**
* Get the allowTextEntry property: If true, allows custom values that aren't in the configured choices.
*
* @return the allowTextEntry value.
*/
public Boolean allowTextEntry() {
return this.allowTextEntry;
}
/**
* Set the allowTextEntry property: If true, allows custom values that aren't in the configured choices.
*
* @param allowTextEntry the allowTextEntry value to set.
* @return the MicrosoftGraphChoiceColumn object itself.
*/
public MicrosoftGraphChoiceColumn withAllowTextEntry(Boolean allowTextEntry) {
this.allowTextEntry = allowTextEntry;
return this;
}
/**
* Get the choices property: The list of values available for this column.
*
* @return the choices value.
*/
public List choices() {
return this.choices;
}
/**
* Set the choices property: The list of values available for this column.
*
* @param choices the choices value to set.
* @return the MicrosoftGraphChoiceColumn object itself.
*/
public MicrosoftGraphChoiceColumn withChoices(List choices) {
this.choices = choices;
return this;
}
/**
* Get the displayAs property: How the choices are to be presented in the UX. Must be one of checkBoxes,
* dropDownMenu, or radioButtons.
*
* @return the displayAs value.
*/
public String displayAs() {
return this.displayAs;
}
/**
* Set the displayAs property: How the choices are to be presented in the UX. Must be one of checkBoxes,
* dropDownMenu, or radioButtons.
*
* @param displayAs the displayAs value to set.
* @return the MicrosoftGraphChoiceColumn object itself.
*/
public MicrosoftGraphChoiceColumn withDisplayAs(String displayAs) {
this.displayAs = displayAs;
return this;
}
/**
* Get the additionalProperties property: choiceColumn.
*
* @return the additionalProperties value.
*/
public Map additionalProperties() {
return this.additionalProperties;
}
/**
* Set the additionalProperties property: choiceColumn.
*
* @param additionalProperties the additionalProperties value to set.
* @return the MicrosoftGraphChoiceColumn object itself.
*/
public MicrosoftGraphChoiceColumn withAdditionalProperties(Map additionalProperties) {
this.additionalProperties = additionalProperties;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeBooleanField("allowTextEntry", this.allowTextEntry);
jsonWriter.writeArrayField("choices", this.choices, (writer, element) -> writer.writeString(element));
jsonWriter.writeStringField("displayAs", this.displayAs);
if (additionalProperties != null) {
for (Map.Entry additionalProperty : additionalProperties.entrySet()) {
jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
}
}
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of MicrosoftGraphChoiceColumn from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of MicrosoftGraphChoiceColumn if the JsonReader was pointing to an instance of it, or null if
* it was pointing to JSON null.
* @throws IOException If an error occurs while reading the MicrosoftGraphChoiceColumn.
*/
public static MicrosoftGraphChoiceColumn fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
MicrosoftGraphChoiceColumn deserializedMicrosoftGraphChoiceColumn = new MicrosoftGraphChoiceColumn();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("allowTextEntry".equals(fieldName)) {
deserializedMicrosoftGraphChoiceColumn.allowTextEntry = reader.getNullable(JsonReader::getBoolean);
} else if ("choices".equals(fieldName)) {
List choices = reader.readArray(reader1 -> reader1.getString());
deserializedMicrosoftGraphChoiceColumn.choices = choices;
} else if ("displayAs".equals(fieldName)) {
deserializedMicrosoftGraphChoiceColumn.displayAs = reader.getString();
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedMicrosoftGraphChoiceColumn.additionalProperties = additionalProperties;
return deserializedMicrosoftGraphChoiceColumn;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy