Class ImmutableObjectMeta
- java.lang.Object
-
- org.apache.camel.k.tooling.maven.model.k8s.ImmutableObjectMeta
-
- All Implemented Interfaces:
ObjectMeta
@Generated("org.immutables.processor.ProxyProcessor") public final class ImmutableObjectMeta extends Object implements ObjectMeta
Immutable implementation ofObjectMeta.Use the builder to create immutable instances:
new ObjectMeta.Builder().
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classImmutableObjectMeta.BuilderBuilds instances of typeImmutableObjectMeta.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ImmutableObjectMetacopyOf(ObjectMeta instance)Creates an immutable copy of aObjectMetavalue.booleanequals(Object another)This instance is equal to all instances ofImmutableObjectMetathat have equal attribute values.com.google.common.collect.ImmutableMap<String,String>getLabels()StringgetName()inthashCode()Computes a hash code from attributes:name,labels.StringtoString()Prints the immutable valueObjectMetawith attribute values.ImmutableObjectMetawithLabels(Map<String,? extends String> entries)Copy the current immutable object by replacing thelabelsmap with the specified map.ImmutableObjectMetawithName(String value)Copy the current immutable object by setting a value for thenameattribute.
-
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getNamein interfaceObjectMeta- Returns:
- The value of the
nameattribute
-
getLabels
public com.google.common.collect.ImmutableMap<String,String> getLabels()
- Specified by:
getLabelsin interfaceObjectMeta- Returns:
- The value of the
labelsattribute
-
withName
public final ImmutableObjectMeta withName(String value)
Copy the current immutable object by setting a value for thenameattribute. An equals check used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for name- Returns:
- A modified copy of the
thisobject
-
withLabels
public final ImmutableObjectMeta withLabels(Map<String,? extends String> entries)
Copy the current immutable object by replacing thelabelsmap with the specified map. Nulls are not permitted as keys or values. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
entries- The entries to be added to the labels map- Returns:
- A modified copy of
thisobject
-
equals
public boolean equals(Object another)
This instance is equal to all instances ofImmutableObjectMetathat have equal attribute values.
-
hashCode
public int hashCode()
Computes a hash code from attributes:name,labels.
-
toString
public String toString()
Prints the immutable valueObjectMetawith attribute values.
-
copyOf
public static ImmutableObjectMeta copyOf(ObjectMeta instance)
Creates an immutable copy of aObjectMetavalue. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.- Parameters:
instance- The instance to copy- Returns:
- A copied immutable ObjectMeta instance
-
-