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

com.datadog.api.client.v1.model.WidgetVerticalAlign Maven / Gradle / Ivy

/*
 * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
 * This product includes software developed at Datadog (https://www.datadoghq.com/).
 * Copyright 2019-Present Datadog, Inc.
 */

package com.datadog.api.client.v1.model;

import com.datadog.api.client.ModelEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.StdSerializer;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;

/** Vertical alignment. */
@JsonSerialize(using = WidgetVerticalAlign.WidgetVerticalAlignSerializer.class)
public class WidgetVerticalAlign extends ModelEnum {

  private static final Set allowedValues =
      new HashSet(Arrays.asList("center", "top", "bottom"));

  public static final WidgetVerticalAlign CENTER = new WidgetVerticalAlign("center");
  public static final WidgetVerticalAlign TOP = new WidgetVerticalAlign("top");
  public static final WidgetVerticalAlign BOTTOM = new WidgetVerticalAlign("bottom");

  WidgetVerticalAlign(String value) {
    super(value, allowedValues);
  }

  public static class WidgetVerticalAlignSerializer extends StdSerializer {
    public WidgetVerticalAlignSerializer(Class t) {
      super(t);
    }

    public WidgetVerticalAlignSerializer() {
      this(null);
    }

    @Override
    public void serialize(
        WidgetVerticalAlign value, JsonGenerator jgen, SerializerProvider provider)
        throws IOException, JsonProcessingException {
      jgen.writeObject(value.value);
    }
  }

  @JsonCreator
  public static WidgetVerticalAlign fromValue(String value) {
    return new WidgetVerticalAlign(value);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy