com.github.mmuller88.alpsUnifiedTs.AlpsSpec Maven / Gradle / Ivy
package com.github.mmuller88.alpsUnifiedTs;
/**
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.16.0 (build 99a3413)", date = "2020-12-19T21:27:37.746Z")
@software.amazon.jsii.Jsii(module = com.github.mmuller88.alpsUnifiedTs.$Module.class, fqn = "alps-unified-ts.AlpsSpec")
@software.amazon.jsii.Jsii.Proxy(AlpsSpec.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface AlpsSpec extends software.amazon.jsii.JsiiSerializable {
/**
* Indicates the root of the ALPS document.
*
* This property is REQUIRED, and it SHOULD have one or more 'descriptor' child properties.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull com.github.mmuller88.alpsUnifiedTs.AlpsDef getAlps();
/**
* @return a {@link Builder} of {@link AlpsSpec}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link AlpsSpec}
*/
@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.AlpsDef alps;
/**
* Sets the value of {@link AlpsSpec#getAlps}
* @param alps Indicates the root of the ALPS document. This parameter is required.
* This property is REQUIRED, and it SHOULD have one or more 'descriptor' child properties.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder alps(com.github.mmuller88.alpsUnifiedTs.AlpsDef alps) {
this.alps = alps;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link AlpsSpec}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public AlpsSpec build() {
return new Jsii$Proxy(alps);
}
}
/**
* An implementation for {@link AlpsSpec}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements AlpsSpec {
private final com.github.mmuller88.alpsUnifiedTs.AlpsDef alps;
/**
* 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.alps = software.amazon.jsii.Kernel.get(this, "alps", software.amazon.jsii.NativeType.forClass(com.github.mmuller88.alpsUnifiedTs.AlpsDef.class));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final com.github.mmuller88.alpsUnifiedTs.AlpsDef alps) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.alps = java.util.Objects.requireNonNull(alps, "alps is required");
}
@Override
public final com.github.mmuller88.alpsUnifiedTs.AlpsDef getAlps() {
return this.alps;
}
@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("alps", om.valueToTree(this.getAlps()));
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("alps-unified-ts.AlpsSpec"));
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;
AlpsSpec.Jsii$Proxy that = (AlpsSpec.Jsii$Proxy) o;
return this.alps.equals(that.alps);
}
@Override
public final int hashCode() {
int result = this.alps.hashCode();
return result;
}
}
}