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

com.apitable.client.api.model.field.property.option.SymbolAlignEnum Maven / Gradle / Ivy

The newest version!
package com.apitable.client.api.model.field.property.option;

import com.fasterxml.jackson.annotation.JsonValue;

public enum SymbolAlignEnum {
    /**
     * the monetary unit is fixed to the left.
     */
    Default("Default"),
    /**
     * the monetary unit is fixed to the left.
     */
    Left("Left"),
    /**
     * the monetary unit is fixed to the right.
     */
    Right("Right");

    private final String value;

    SymbolAlignEnum(String value) {
        this.value = value;
    }

    @JsonValue
    public String getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy