All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.iotoperationsmq.enums.DeltaTableFormatEnum Maven / Gradle / Ivy

The newest version!
// *** 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.azurenative.iotoperationsmq.enums;

import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;

    /**
     * Delta table format supported.
     * 
     */
    @EnumType
    public enum DeltaTableFormatEnum {
        /**
         * Bool format
         * 
         */
        Boolean_("boolean"),
        /**
         * Signed integer 8
         * 
         */
        Int8("int8"),
        /**
         * Signed integer 16
         * 
         */
        Int16("int16"),
        /**
         * Signed integer 32
         * 
         */
        Int32("int32"),
        /**
         * Unsigned integer 8
         * 
         */
        UInt8("uInt8"),
        /**
         * Unsigned integer 16
         * 
         */
        UInt16("uInt16"),
        /**
         * Unsigned integer 32
         * 
         */
        UInt32("uInt32"),
        /**
         * Unsigned integer 64
         * 
         */
        UInt64("uInt64"),
        /**
         * Float 16
         * 
         */
        Float16("float16"),
        /**
         * Float 32
         * 
         */
        Float32("float32"),
        /**
         * Float 64
         * 
         */
        Float64("float64"),
        /**
         * Date 32
         * 
         */
        Date32("date32"),
        /**
         * Date 64
         * 
         */
        Date64("date64"),
        /**
         * Binary data
         * 
         */
        Binary("binary"),
        /**
         * UTF8 format
         * 
         */
        Utf8("utf8");

        private final String value;

        DeltaTableFormatEnum(String value) {
            this.value = Objects.requireNonNull(value);
        }

        @EnumType.Converter
        public String getValue() {
            return this.value;
        }

        @Override
        public java.lang.String toString() {
            return new StringJoiner(", ", "DeltaTableFormatEnum[", "]")
                .add("value='" + this.value + "'")
                .toString();
        }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy