com.commercetools.importapi.models.common.StateKeyReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commercetools-sdk-java-importapi Show documentation
Show all versions of commercetools-sdk-java-importapi Show documentation
The e-commerce SDK from commercetools Composable Commerce for Java
package com.commercetools.importapi.models.common;
import java.time.*;
import java.util.*;
import java.util.function.Function;
import javax.annotation.Nullable;
import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.databind.annotation.*;
import io.vrap.rmf.base.client.utils.Generated;
/**
* References a state by key.
*
*
* Example to create an instance using the builder pattern
*
*
* StateKeyReference stateKeyReference = StateKeyReference.builder()
* .key("{key}")
* .build()
*
*
*/
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = StateKeyReferenceImpl.class)
public interface StateKeyReference extends KeyReference {
/**
* discriminator value for StateKeyReference
*/
String STATE = "state";
/**
* factory method
* @return instance of StateKeyReference
*/
public static StateKeyReference of() {
return new StateKeyReferenceImpl();
}
/**
* factory method to create a shallow copy StateKeyReference
* @param template instance to be copied
* @return copy instance
*/
public static StateKeyReference of(final StateKeyReference template) {
StateKeyReferenceImpl instance = new StateKeyReferenceImpl();
instance.setKey(template.getKey());
return instance;
}
/**
* factory method to create a deep copy of StateKeyReference
* @param template instance to be copied
* @return copy instance
*/
@Nullable
public static StateKeyReference deepCopy(@Nullable final StateKeyReference template) {
if (template == null) {
return null;
}
StateKeyReferenceImpl instance = new StateKeyReferenceImpl();
instance.setKey(template.getKey());
return instance;
}
/**
* builder factory method for StateKeyReference
* @return builder
*/
public static StateKeyReferenceBuilder builder() {
return StateKeyReferenceBuilder.of();
}
/**
* create builder for StateKeyReference instance
* @param template instance with prefilled values for the builder
* @return builder
*/
public static StateKeyReferenceBuilder builder(final StateKeyReference template) {
return StateKeyReferenceBuilder.of(template);
}
/**
* accessor map function
* @param mapped type
* @param helper function to map the object
* @return mapped value
*/
default T withStateKeyReference(Function helper) {
return helper.apply(this);
}
/**
* gives a TypeReference for usage with Jackson DataBind
* @return TypeReference
*/
public static com.fasterxml.jackson.core.type.TypeReference typeReference() {
return new com.fasterxml.jackson.core.type.TypeReference() {
@Override
public String toString() {
return "TypeReference";
}
};
}
}