
com.sap.cloudfoundry.client.facade.adapters.ImmutableApplicationLogsResponse Maven / Gradle / Ivy
Show all versions of cloudfoundry-client-facade Show documentation
package com.sap.cloudfoundry.client.facade.adapters;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import org.immutables.value.Generated;
/**
* Immutable implementation of {@link ApplicationLogsResponse}.
*
* Use the builder to create immutable instances:
* {@code ImmutableApplicationLogsResponse.builder()}.
*/
@Generated(from = "ApplicationLogsResponse", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.processing.Generated("org.immutables.processor.ProxyProcessor")
public final class ImmutableApplicationLogsResponse
implements ApplicationLogsResponse {
private final List logs;
private ImmutableApplicationLogsResponse(List logs) {
this.logs = logs;
}
/**
* @return The value of the {@code logs} attribute
*/
@JsonProperty("batch")
@Override
public List getLogs() {
return logs;
}
/**
* Copy the current immutable object with elements that replace the content of {@link ApplicationLogsResponse#getLogs() logs}.
* @param elements The elements to set
* @return A modified copy of {@code this} object
*/
public final ImmutableApplicationLogsResponse withLogs(ApplicationLogEntity... elements) {
List newValue = createUnmodifiableList(false, createSafeList(Arrays.asList(elements), true, false));
return new ImmutableApplicationLogsResponse(newValue);
}
/**
* Copy the current immutable object with elements that replace the content of {@link ApplicationLogsResponse#getLogs() logs}.
* A shallow reference equality check is used to prevent copying of the same value by returning {@code this}.
* @param elements An iterable of logs elements to set
* @return A modified copy of {@code this} object
*/
public final ImmutableApplicationLogsResponse withLogs(Iterable extends ApplicationLogEntity> elements) {
if (this.logs == elements) return this;
List newValue = createUnmodifiableList(false, createSafeList(elements, true, false));
return new ImmutableApplicationLogsResponse(newValue);
}
/**
* This instance is equal to all instances of {@code ImmutableApplicationLogsResponse} that have equal attribute values.
* @return {@code true} if {@code this} is equal to {@code another} instance
*/
@Override
public boolean equals(Object another) {
if (this == another) return true;
return another instanceof ImmutableApplicationLogsResponse
&& equalTo(0, (ImmutableApplicationLogsResponse) another);
}
private boolean equalTo(int synthetic, ImmutableApplicationLogsResponse another) {
return logs.equals(another.logs);
}
/**
* Computes a hash code from attributes: {@code logs}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 5381;
h += (h << 5) + logs.hashCode();
return h;
}
/**
* Prints the immutable value {@code ApplicationLogsResponse} with attribute values.
* @return A string representation of the value
*/
@Override
public String toString() {
return "ApplicationLogsResponse{"
+ "logs=" + logs
+ "}";
}
/**
* Utility type used to correctly read immutable object from JSON representation.
* @deprecated Do not use this type directly, it exists only for the Jackson-binding infrastructure
*/
@Generated(from = "ApplicationLogsResponse", generator = "Immutables")
@Deprecated
@JsonDeserialize
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE)
static final class Json implements ApplicationLogsResponse {
List logs = Collections.emptyList();
@JsonProperty("batch")
public void setLogs(List logs) {
this.logs = logs;
}
@Override
public List getLogs() { throw new UnsupportedOperationException(); }
}
/**
* @param json A JSON-bindable data structure
* @return An immutable value type
* @deprecated Do not use this method directly, it exists only for the Jackson-binding infrastructure
*/
@Deprecated
@JsonCreator(mode = JsonCreator.Mode.DELEGATING)
static ImmutableApplicationLogsResponse fromJson(Json json) {
ImmutableApplicationLogsResponse.Builder builder = ImmutableApplicationLogsResponse.builder();
if (json.logs != null) {
builder.addAllLogs(json.logs);
}
return builder.build();
}
/**
* Creates an immutable copy of a {@link ApplicationLogsResponse} value.
* Uses accessors to get values to initialize the new immutable instance.
* If an instance is already immutable, it is returned as is.
* @param instance The instance to copy
* @return A copied immutable ApplicationLogsResponse instance
*/
public static ImmutableApplicationLogsResponse copyOf(ApplicationLogsResponse instance) {
if (instance instanceof ImmutableApplicationLogsResponse) {
return (ImmutableApplicationLogsResponse) instance;
}
return ImmutableApplicationLogsResponse.builder()
.from(instance)
.build();
}
/**
* Creates a builder for {@link ImmutableApplicationLogsResponse ImmutableApplicationLogsResponse}.
*
* ImmutableApplicationLogsResponse.builder()
* .addLog|addAllLogs(com.sap.cloudfoundry.client.facade.adapters.ApplicationLogEntity) // {@link ApplicationLogsResponse#getLogs() logs} elements
* .build();
*
* @return A new ImmutableApplicationLogsResponse builder
*/
public static ImmutableApplicationLogsResponse.Builder builder() {
return new ImmutableApplicationLogsResponse.Builder();
}
/**
* Builds instances of type {@link ImmutableApplicationLogsResponse ImmutableApplicationLogsResponse}.
* Initialize attributes and then invoke the {@link #build()} method to create an
* immutable instance.
* {@code Builder} is not thread-safe and generally should not be stored in a field or collection,
* but instead used immediately to create instances.
*/
@Generated(from = "ApplicationLogsResponse", generator = "Immutables")
public static final class Builder {
private List logs = new ArrayList();
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code ApplicationLogsResponse} instance.
* Regular attribute values will be replaced with those from the given instance.
* Absent optional values will not replace present values.
* Collection elements and entries will be added, not replaced.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
public final Builder from(ApplicationLogsResponse instance) {
Objects.requireNonNull(instance, "instance");
addAllLogs(instance.getLogs());
return this;
}
/**
* Adds one element to {@link ApplicationLogsResponse#getLogs() logs} list.
* @param element A logs element
* @return {@code this} builder for use in a chained invocation
*/
public final Builder addLog(ApplicationLogEntity element) {
this.logs.add(Objects.requireNonNull(element, "logs element"));
return this;
}
/**
* Adds elements to {@link ApplicationLogsResponse#getLogs() logs} list.
* @param elements An array of logs elements
* @return {@code this} builder for use in a chained invocation
*/
public final Builder addLogs(ApplicationLogEntity... elements) {
for (ApplicationLogEntity element : elements) {
this.logs.add(Objects.requireNonNull(element, "logs element"));
}
return this;
}
/**
* Sets or replaces all elements for {@link ApplicationLogsResponse#getLogs() logs} list.
* @param elements An iterable of logs elements
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("batch")
public final Builder logs(Iterable extends ApplicationLogEntity> elements) {
this.logs.clear();
return addAllLogs(elements);
}
/**
* Adds elements to {@link ApplicationLogsResponse#getLogs() logs} list.
* @param elements An iterable of logs elements
* @return {@code this} builder for use in a chained invocation
*/
public final Builder addAllLogs(Iterable extends ApplicationLogEntity> elements) {
for (ApplicationLogEntity element : elements) {
this.logs.add(Objects.requireNonNull(element, "logs element"));
}
return this;
}
/**
* Builds a new {@link ImmutableApplicationLogsResponse ImmutableApplicationLogsResponse}.
* @return An immutable instance of ApplicationLogsResponse
* @throws java.lang.IllegalStateException if any required attributes are missing
*/
public ImmutableApplicationLogsResponse build() {
return new ImmutableApplicationLogsResponse(createUnmodifiableList(true, logs));
}
}
private static List createSafeList(Iterable extends T> iterable, boolean checkNulls, boolean skipNulls) {
ArrayList list;
if (iterable instanceof Collection>) {
int size = ((Collection>) iterable).size();
if (size == 0) return Collections.emptyList();
list = new ArrayList<>(size);
} else {
list = new ArrayList<>();
}
for (T element : iterable) {
if (skipNulls && element == null) continue;
if (checkNulls) Objects.requireNonNull(element, "element");
list.add(element);
}
return list;
}
private static List createUnmodifiableList(boolean clone, List list) {
switch(list.size()) {
case 0: return Collections.emptyList();
case 1: return Collections.singletonList(list.get(0));
default:
if (clone) {
return Collections.unmodifiableList(new ArrayList<>(list));
} else {
if (list instanceof ArrayList>) {
((ArrayList>) list).trimToSize();
}
return Collections.unmodifiableList(list);
}
}
}
}