Uses of Class
com.orbitz.consul.model.kv.Value
-
Packages that use Value Package Description com.orbitz.consul com.orbitz.consul.model.kv -
-
Uses of Value in com.orbitz.consul
Methods in com.orbitz.consul that return types with arguments of type Value Modifier and Type Method Description java.util.Optional<ConsulResponse<Value>>KeyValueClient. getConsulResponseWithValue(java.lang.String key)Retrieves aConsulResponsewith theValuefor a spefici key from the key/value storejava.util.Optional<ConsulResponse<Value>>KeyValueClient. getConsulResponseWithValue(java.lang.String key, QueryOptions queryOptions)Returns aConsulResponsefor a specific key from the kv store.ConsulResponse<java.util.List<Value>>KeyValueClient. getConsulResponseWithValues(java.lang.String key)Retrieves aConsulResponsewith a list ofValueobjects along with consul response headers for a specific key from the key/value store.ConsulResponse<java.util.List<Value>>KeyValueClient. getConsulResponseWithValues(java.lang.String key, QueryOptions queryOptions)Retrieves aConsulResponsewith a list ofValueobjects along with consul response headers for a specific key from the key/value store.retrofit2.Call<java.util.List<Value>>KeyValueClient.Api. getValue(java.lang.String key, java.util.Map<java.lang.String,java.lang.Object> query)java.util.Optional<Value>KeyValueClient. getValue(java.lang.String key)Retrieves aValuefor a specific key from the key/value store.java.util.Optional<Value>KeyValueClient. getValue(java.lang.String key, QueryOptions queryOptions)Retrieves aValuefor a specific key from the key/value store.java.util.List<Value>KeyValueClient. getValues(java.lang.String key)Retrieves a list ofValueobjects for a specific key from the key/value store.java.util.List<Value>KeyValueClient. getValues(java.lang.String key, QueryOptions queryOptions)Retrieves a list ofValueobjects for a specific key from the key/value store.Method parameters in com.orbitz.consul with type arguments of type Value Modifier and Type Method Description voidKeyValueClient. getValue(java.lang.String key, QueryOptions queryOptions, ConsulResponseCallback<java.util.Optional<Value>> callback)Asynchronously retrieves aValuefor a specific key from the key/value store.voidKeyValueClient. getValues(java.lang.String key, QueryOptions queryOptions, ConsulResponseCallback<java.util.List<Value>> callback)Asynchronously retrieves a list ofValueobjects for a specific key from the key/value store. -
Uses of Value in com.orbitz.consul.model.kv
Subclasses of Value in com.orbitz.consul.model.kv Modifier and Type Class Description classImmutableValueImmutable implementation ofValue.Methods in com.orbitz.consul.model.kv that return types with arguments of type Value Modifier and Type Method Description com.google.common.collect.ImmutableList<java.util.Map<java.lang.String,Value>>ImmutableTxResponse. results()abstract java.util.List<java.util.Map<java.lang.String,Value>>TxResponse. results()Methods in com.orbitz.consul.model.kv with parameters of type Value Modifier and Type Method Description static ImmutableValueImmutableValue. copyOf(Value instance)Creates an immutable copy of aValuevalue.ImmutableValue.BuilderImmutableValue.Builder. from(Value instance)Fill a builder with attribute values from the providedValueinstance.Method parameters in com.orbitz.consul.model.kv with type arguments of type Value Modifier and Type Method Description ImmutableTxResponse.BuilderImmutableTxResponse.Builder. addAllResults(java.lang.Iterable<? extends java.util.Map<java.lang.String,Value>> elements)Adds elements toresultslist.ImmutableTxResponse.BuilderImmutableTxResponse.Builder. addResults(java.util.Map<java.lang.String,Value> element)Adds one element toresultslist.ImmutableTxResponse.BuilderImmutableTxResponse.Builder. results(java.lang.Iterable<? extends java.util.Map<java.lang.String,Value>> elements)Sets or replaces all elements forresultslist.ImmutableTxResponseImmutableTxResponse. withResults(java.lang.Iterable<? extends java.util.Map<java.lang.String,Value>> elements)Copy the current immutable object with elements that replace the content ofresults.
-