com.pulumi.googlenative.dialogflow.v2.enums.GoogleCloudDialogflowV2IntentMessageColumnPropertiesHorizontalAlignment Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.googlenative.dialogflow.v2.enums;
import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;
/**
* Optional. Defines text alignment for all cells in this column.
*
*/
@EnumType
public enum GoogleCloudDialogflowV2IntentMessageColumnPropertiesHorizontalAlignment {
/**
* Text is aligned to the leading edge of the column.
*
*/
HorizontalAlignmentUnspecified("HORIZONTAL_ALIGNMENT_UNSPECIFIED"),
/**
* Text is aligned to the leading edge of the column.
*
*/
Leading("LEADING"),
/**
* Text is centered in the column.
*
*/
Center("CENTER"),
/**
* Text is aligned to the trailing edge of the column.
*
*/
Trailing("TRAILING");
private final String value;
GoogleCloudDialogflowV2IntentMessageColumnPropertiesHorizontalAlignment(String value) {
this.value = Objects.requireNonNull(value);
}
@EnumType.Converter
public String getValue() {
return this.value;
}
@Override
public String toString() {
return new StringJoiner(", ", "GoogleCloudDialogflowV2IntentMessageColumnPropertiesHorizontalAlignment[", "]")
.add("value='" + this.value + "'")
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy