Class ImmutableObjectMeta.Builder
- java.lang.Object
-
- org.apache.camel.k.tooling.maven.model.k8s.ImmutableObjectMeta.Builder
-
- Direct Known Subclasses:
ObjectMeta.Builder
- Enclosing class:
- ImmutableObjectMeta
public static class ImmutableObjectMeta.Builder extends Object
Builds instances of typeImmutableObjectMeta. Initialize attributes and then invoke thebuild()method to create an immutable instance.Builderis not thread-safe and generally should not be stored in a field or collection, but instead used immediately to create instances.
-
-
Constructor Summary
Constructors Constructor Description Builder()Creates a builder forImmutableObjectMetainstances.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableObjectMetabuild()Builds a newImmutableObjectMeta.ObjectMeta.Builderfrom(ObjectMeta instance)Fill a builder with attribute values from the providedObjectMetainstance.ObjectMeta.Builderlabels(Map<String,? extends String> entries)Sets or replaces all mappings from the specified map as entries for thelabelsmap.ObjectMeta.Buildername(String name)Initializes the value for thenameattribute.ObjectMeta.BuilderputAllLabels(Map<String,? extends String> entries)Put all mappings from the specified map as entries tolabelsmap.ObjectMeta.BuilderputLabels(String key, String value)Put one entry to thelabelsmap.ObjectMeta.BuilderputLabels(Map.Entry<String,? extends String> entry)Put one entry to thelabelsmap.
-
-
-
Constructor Detail
-
Builder
public Builder()
Creates a builder forImmutableObjectMetainstances.new ObjectMeta.Builder() .name(String) // requiredname.putLabels|putAllLabels(String => String) //labelsmappings .build();
-
-
Method Detail
-
from
public final ObjectMeta.Builder from(ObjectMeta instance)
Fill a builder with attribute values from the providedObjectMetainstance. 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.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
name
public final ObjectMeta.Builder name(String name)
Initializes the value for thenameattribute.- Parameters:
name- The value for name- Returns:
thisbuilder for use in a chained invocation
-
putLabels
public final ObjectMeta.Builder putLabels(String key, String value)
Put one entry to thelabelsmap.- Parameters:
key- The key in the labels mapvalue- The associated value in the labels map- Returns:
thisbuilder for use in a chained invocation
-
putLabels
public final ObjectMeta.Builder putLabels(Map.Entry<String,? extends String> entry)
Put one entry to thelabelsmap. Nulls are not permitted- Parameters:
entry- The key and value entry- Returns:
thisbuilder for use in a chained invocation
-
labels
public final ObjectMeta.Builder labels(Map<String,? extends String> entries)
Sets or replaces all mappings from the specified map as entries for thelabelsmap. Nulls are not permitted- Parameters:
entries- The entries that will be added to the labels map- Returns:
thisbuilder for use in a chained invocation
-
putAllLabels
public final ObjectMeta.Builder putAllLabels(Map<String,? extends String> entries)
Put all mappings from the specified map as entries tolabelsmap. Nulls are not permitted- Parameters:
entries- The entries that will be added to the labels map- Returns:
thisbuilder for use in a chained invocation
-
build
public ImmutableObjectMeta build()
Builds a newImmutableObjectMeta.- Returns:
- An immutable instance of ObjectMeta
- Throws:
IllegalStateException- if any required attributes are missing
-
-