Class ImmutableCamelCatalogSpec
- java.lang.Object
-
- org.apache.camel.k.tooling.maven.model.crd.ImmutableCamelCatalogSpec
-
- All Implemented Interfaces:
CamelCatalogSpec
@Generated("org.immutables.processor.ProxyProcessor") public final class ImmutableCamelCatalogSpec extends Object implements CamelCatalogSpec
Immutable implementation ofCamelCatalogSpec
.Use the builder to create immutable instances:
new CamelCatalogSpec.Builder()
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ImmutableCamelCatalogSpec.Builder
Builds instances of typeImmutableCamelCatalogSpec
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ImmutableCamelCatalogSpec
copyOf(CamelCatalogSpec instance)
Creates an immutable copy of aCamelCatalogSpec
value.boolean
equals(Object another)
This instance is equal to all instances ofImmutableCamelCatalogSpec
that have equal attribute values.com.google.common.collect.ImmutableMap<String,CamelArtifact>
getArtifacts()
com.google.common.collect.ImmutableMap<String,CamelLoader>
getLoaders()
RuntimeSpec
getRuntime()
int
hashCode()
Computes a hash code from attributes:runtime
,artifacts
,loaders
.String
toString()
Prints the immutable valueCamelCatalogSpec
with attribute values.ImmutableCamelCatalogSpec
withArtifacts(Map<String,? extends CamelArtifact> entries)
Copy the current immutable object by replacing theartifacts
map with the specified map.ImmutableCamelCatalogSpec
withLoaders(Map<String,? extends CamelLoader> entries)
Copy the current immutable object by replacing theloaders
map with the specified map.ImmutableCamelCatalogSpec
withRuntime(RuntimeSpec value)
Copy the current immutable object by setting a value for theruntime
attribute.
-
-
-
Method Detail
-
getRuntime
public RuntimeSpec getRuntime()
- Specified by:
getRuntime
in interfaceCamelCatalogSpec
- Returns:
- The value of the
runtime
attribute
-
getArtifacts
public com.google.common.collect.ImmutableMap<String,CamelArtifact> getArtifacts()
- Specified by:
getArtifacts
in interfaceCamelCatalogSpec
- Returns:
- The value of the
artifacts
attribute
-
getLoaders
public com.google.common.collect.ImmutableMap<String,CamelLoader> getLoaders()
- Specified by:
getLoaders
in interfaceCamelCatalogSpec
- Returns:
- The value of the
loaders
attribute
-
withRuntime
public final ImmutableCamelCatalogSpec withRuntime(RuntimeSpec value)
Copy the current immutable object by setting a value for theruntime
attribute. A shallow reference equality check is used to prevent copying of the same value by returningthis
.- Parameters:
value
- A new value for runtime- Returns:
- A modified copy of the
this
object
-
withArtifacts
public final ImmutableCamelCatalogSpec withArtifacts(Map<String,? extends CamelArtifact> entries)
Copy the current immutable object by replacing theartifacts
map 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 artifacts map- Returns:
- A modified copy of
this
object
-
withLoaders
public final ImmutableCamelCatalogSpec withLoaders(Map<String,? extends CamelLoader> entries)
Copy the current immutable object by replacing theloaders
map 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 loaders map- Returns:
- A modified copy of
this
object
-
equals
public boolean equals(Object another)
This instance is equal to all instances ofImmutableCamelCatalogSpec
that have equal attribute values.
-
hashCode
public int hashCode()
Computes a hash code from attributes:runtime
,artifacts
,loaders
.
-
toString
public String toString()
Prints the immutable valueCamelCatalogSpec
with attribute values.
-
copyOf
public static ImmutableCamelCatalogSpec copyOf(CamelCatalogSpec instance)
Creates an immutable copy of aCamelCatalogSpec
value. 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 CamelCatalogSpec instance
-
-