com.github.mmuller88.alpsUnifiedTs.ConvertOptions Maven / Gradle / Ivy
package com.github.mmuller88.alpsUnifiedTs;
/**
* Convert option.
*
* So far only the format type
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.16.0 (build 99a3413)", date = "2020-12-19T21:27:37.747Z")
@software.amazon.jsii.Jsii(module = com.github.mmuller88.alpsUnifiedTs.$Module.class, fqn = "alps-unified-ts.ConvertOptions")
@software.amazon.jsii.Jsii.Proxy(ConvertOptions.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface ConvertOptions extends software.amazon.jsii.JsiiSerializable {
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull com.github.mmuller88.alpsUnifiedTs.FormatType getFormatType();
/**
* @return a {@link Builder} of {@link ConvertOptions}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link ConvertOptions}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static final class Builder implements software.amazon.jsii.Builder {
private com.github.mmuller88.alpsUnifiedTs.FormatType formatType;
/**
* Sets the value of {@link ConvertOptions#getFormatType}
* @param formatType the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder formatType(com.github.mmuller88.alpsUnifiedTs.FormatType formatType) {
this.formatType = formatType;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link ConvertOptions}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public ConvertOptions build() {
return new Jsii$Proxy(formatType);
}
}
/**
* An implementation for {@link ConvertOptions}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements ConvertOptions {
private final com.github.mmuller88.alpsUnifiedTs.FormatType formatType;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.formatType = software.amazon.jsii.Kernel.get(this, "formatType", software.amazon.jsii.NativeType.forClass(com.github.mmuller88.alpsUnifiedTs.FormatType.class));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final com.github.mmuller88.alpsUnifiedTs.FormatType formatType) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.formatType = java.util.Objects.requireNonNull(formatType, "formatType is required");
}
@Override
public final com.github.mmuller88.alpsUnifiedTs.FormatType getFormatType() {
return this.formatType;
}
@Override
@software.amazon.jsii.Internal
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
data.set("formatType", om.valueToTree(this.getFormatType()));
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("alps-unified-ts.ConvertOptions"));
struct.set("data", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set("$jsii.struct", struct);
return obj;
}
@Override
public final boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ConvertOptions.Jsii$Proxy that = (ConvertOptions.Jsii$Proxy) o;
return this.formatType.equals(that.formatType);
}
@Override
public final int hashCode() {
int result = this.formatType.hashCode();
return result;
}
}
}