Interface TokenValue
-
- All Superinterfaces:
java.io.Serializable
public interface TokenValue extends java.io.SerializableDescribes a token value for a backend.- Since:
- 2.0
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetValue()static TokenValueof(java.lang.Object value, org.gradle.api.model.ObjectFactory objects)Creates an instance from an arbitrary value.static TokenValueof(java.lang.Object value, org.ysb33r.grolifant5.api.core.ConfigCacheSafeOperations ccso)Creates an instance from an arbitrary value.static TokenValueof(java.lang.Object value, org.ysb33r.grolifant5.api.core.ProviderTools pt)Creates an instance from an arbitrary value.
-
-
-
Method Detail
-
of
static TokenValue of(java.lang.Object value, org.gradle.api.model.ObjectFactory objects)
Creates an instance from an arbitrary value.- Parameters:
value- Object that needs to be converted to a value.objects- AnObjectFactory.- Returns:
- An instance of something that implements
TokenValue.
-
of
static TokenValue of(java.lang.Object value, org.ysb33r.grolifant5.api.core.ProviderTools pt)
Creates an instance from an arbitrary value.- Parameters:
value- Object that needs to be converted to a value.pt- An instance ofProviderTools.- Returns:
- An instance of something that implements
TokenValue.
-
of
static TokenValue of(java.lang.Object value, org.ysb33r.grolifant5.api.core.ConfigCacheSafeOperations ccso)
Creates an instance from an arbitrary value.- Parameters:
value- Object that needs to be converted to a value.ccso- An instancer ofProviderTools.- Returns:
- An instance of something that implements
TokenValue.
-
getValue
java.lang.String getValue()
-
-