org.projen.github.workflows.WatchOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of projen Show documentation
Show all versions of projen Show documentation
A new generation of project generators
The newest version!
package org.projen.github.workflows;
/**
* (experimental) Watch options.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.34.0 (build 9b72778)", date = "2021-09-05T18:03:10.222Z")
@software.amazon.jsii.Jsii(module = org.projen.$Module.class, fqn = "projen.github.workflows.WatchOptions")
@software.amazon.jsii.Jsii.Proxy(WatchOptions.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface WatchOptions extends software.amazon.jsii.JsiiSerializable {
/**
* (experimental) Which activity types to trigger on.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.util.List getTypes() {
return null;
}
/**
* @return a {@link Builder} of {@link WatchOptions}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link WatchOptions}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
private java.util.List types;
/**
* Sets the value of {@link WatchOptions#getTypes}
* @param types Which activity types to trigger on.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder types(java.util.List types) {
this.types = types;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link WatchOptions}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public WatchOptions build() {
return new Jsii$Proxy(types);
}
}
/**
* An implementation for {@link WatchOptions}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements WatchOptions {
private final java.util.List types;
/**
* 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.types = software.amazon.jsii.Kernel.get(this, "types", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(java.lang.String.class)));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final java.util.List types) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.types = types;
}
@Override
public final java.util.List getTypes() {
return this.types;
}
@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();
if (this.getTypes() != null) {
data.set("types", om.valueToTree(this.getTypes()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("projen.github.workflows.WatchOptions"));
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;
WatchOptions.Jsii$Proxy that = (WatchOptions.Jsii$Proxy) o;
return this.types != null ? this.types.equals(that.types) : that.types == null;
}
@Override
public final int hashCode() {
int result = this.types != null ? this.types.hashCode() : 0;
return result;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy