@Generated(value="org.immutables.processor.ProxyProcessor") public final class FeatureFlagEntity extends AbstractFeatureFlag
| Modifier and Type | Class and Description |
|---|---|
static class |
FeatureFlagEntity.Builder
Builds instances of type
FeatureFlagEntity. |
| Modifier and Type | Method and Description |
|---|---|
static FeatureFlagEntity.Builder |
builder()
Creates a builder for
FeatureFlagEntity. |
boolean |
equals(Object another)
This instance is equal to all instances of
FeatureFlagEntity that have equal attribute values. |
Boolean |
getEnabled()
The state of the feature flag
|
String |
getErrorMessage()
The custom error message for the feature flag
|
String |
getName()
The name of the feature flag
|
String |
getUrl()
The url for the feature flag
|
int |
hashCode()
Computes a hash code from attributes:
enabled, errorMessage, name, url. |
String |
toString()
Prints the immutable value
FeatureFlagEntity with attribute values. |
public Boolean getEnabled()
public String getErrorMessage()
public String getName()
public String getUrl()
public boolean equals(Object another)
FeatureFlagEntity that have equal attribute values.public int hashCode()
enabled, errorMessage, name, url.public String toString()
FeatureFlagEntity with attribute values.public static FeatureFlagEntity.Builder builder()
FeatureFlagEntity.
FeatureFlagEntity.builder()
.enabled(Boolean | null) // nullable enabled
.errorMessage(String | null) // nullable errorMessage
.name(String | null) // nullable name
.url(String | null) // nullable url
.build();
Copyright © 2020. All rights reserved.