- calculate() - Method in class Concourse
-
Return a
Calculator to use for calculations across data.
- calculate(String, Object...) - Method in class Concourse
-
Perform the specified calculation method using the provided
args.
- Calculator - Class in com.cinchapi.concourse
-
The interface for Concourse's aggregation and calculation abilities.
- ccl() - Method in class BuildableState
-
- ccl() - Method in class BuiltCriteria
-
- ccl() - Method in interface Criteria
-
Return a CCL string that is equivalent to this object.
- chronologize(String, long) - Method in class Concourse
-
Return a time series that contains a snapshot of the values stored for
key in record after every change made to the field.
- chronologize(String, long, Timestamp) - Method in class Concourse
-
Return a time series between start (inclusive) and the present
that contains a snapshot of the values stored for key in
record after every change made to the field during the time span.
- chronologize(String, long, Timestamp, Timestamp) - Method in class Concourse
-
Return a time series between start (inclusive) and end
(non-inclusive) that contains a snapshot of the values stored for
key in record after every change made to the field during
the time span.
- clear(Collection<Long>) - Method in class Concourse
-
Atomically remove all the values stored for every key in each of the
records.
- clear(Collection<String>, Collection<Long>) - Method in class Concourse
-
Atomically remove all the values stored for each of the keys in
each of the records.
- clear(Collection<String>, long) - Method in class Concourse
-
Atomically remove all the values stored for each of the keys in
record.
- clear(long) - Method in class Concourse
-
Atomically remove all the values stored for every key in record.
- clear(String, Collection<Long>) - Method in class Concourse
-
Atomically remove all the values stored for key in each of the
records.
- clear(String, long) - Method in class Concourse
-
Atomically remove all the values stored for key in record
- ClientSecurity - Class in com.cinchapi.concourse.security
-
A collection of tools to deal with security on the client.
- ClientSecurity() - Constructor for class ClientSecurity
-
- clone(ByteBuffer) - Static method in class ByteBuffers
-
Return a clone of buffer that has a copy of all its
content and the same position and limit.
- close() - Method in class Concourse
-
- close() - Method in class ConnectionPool
-
- close() - Method in class BuiltCriteria
-
- close() - Method in class StringBuilderWriter
-
- close() - Method in class EventingWatchService
-
- close() - Method in class PollingWatchService
-
- coefficient() - Method in enum Direction
-
Return the coefficient associated with this
Direction.
- collectionFactory() - Static method in class TypeAdapters
-
Return a
TypeAdapterFactory that contains the preferred JSON
de/serialization rules for
Collections.
- collectionFactory(boolean) - Static method in class TypeAdapters
-
Return a
TypeAdapterFactory that contains the preferred JSON
de/serialization rules for
Collections.
- Collections - Class in com.cinchapi.concourse.util
-
- Column<V> - Interface in com.cinchapi.concourse.data
-
A
Column is a mapping from records (
Long to a value.
- com.cinchapi.concourse - package com.cinchapi.concourse
-
- com.cinchapi.concourse.annotate - package com.cinchapi.concourse.annotate
-
- com.cinchapi.concourse.cache - package com.cinchapi.concourse.cache
-
- com.cinchapi.concourse.config - package com.cinchapi.concourse.config
-
- com.cinchapi.concourse.data - package com.cinchapi.concourse.data
-
- com.cinchapi.concourse.data.sort - package com.cinchapi.concourse.data.sort
-
- com.cinchapi.concourse.data.transform - package com.cinchapi.concourse.data.transform
-
- com.cinchapi.concourse.etl - package com.cinchapi.concourse.etl
-
- com.cinchapi.concourse.lang - package com.cinchapi.concourse.lang
-
- com.cinchapi.concourse.lang.paginate - package com.cinchapi.concourse.lang.paginate
-
- com.cinchapi.concourse.lang.sort - package com.cinchapi.concourse.lang.sort
-
- com.cinchapi.concourse.security - package com.cinchapi.concourse.security
-
- com.cinchapi.concourse.time - package com.cinchapi.concourse.time
-
- com.cinchapi.concourse.util - package com.cinchapi.concourse.util
-
- com.cinchapi.concourse.validate - package com.cinchapi.concourse.validate
-
- commit() - Method in class Concourse
-
Attempt to permanently commit any changes that are staged in a
transaction and return true if and only if all the changes can be
applied.
- compare(Number, Number) - Static method in class Numbers
-
Compare a to b.
- compareTo(Link) - Method in class Link
-
- compareTo(Tag) - Method in class Tag
-
- compareTo(Timestamp) - Method in class Timestamp
-
- compareTo(Version) - Method in class Version
-
- CompoundOperation - Annotation Type in com.cinchapi.concourse.annotate
-
A
Concourse operation that combines
two or more operations in a
non-atomic manner.
- Concourse - Class in com.cinchapi.concourse
-
A client connection to a Concourse node or cluster.
- Concourse() - Constructor for class Concourse
-
- Concourse.ConnectionBuilder - Class in com.cinchapi.concourse
-
An iterative builder for
Concourse connections.
- ConcourseClientPreferences - Class in com.cinchapi.concourse.config
-
A wrapper around the concourse_client.prefs file that is used to
configure a client connection.
- ConcourseServerPreferences - Class in com.cinchapi.concourse.config
-
A wrapper around the concourse.prefs file that is used to
configure the server.
- ConcurrentLoadingQueue<E> - Class in com.cinchapi.concourse.util
-
A
ConcurrentLinkedQueue that uses a specified supplier
Callable to dynamically load elements into the queue when a read
request is made and the queue is empty.
- ConcurrentMaps - Class in com.cinchapi.concourse.util
-
- ConcurrentMaps() - Constructor for class ConcurrentMaps
-
- connect() - Static method in class Concourse
-
Create a new connection to the Concourse deployment described in
./concourse_client.prefs (or, if the file does not exist, the
default environment of the server at localhost:1717) and return a handle
to facilitate interaction.
- connect(String) - Static method in class Concourse
-
Create a new connection to the specified environment of the
Concourse deployment described in ~/concourse_client.prefs (or,
if the file does not exist, the server at localhost:1717) and return a
handle to facilitate interaction.
- connect(String, int, String, String) - Static method in class Concourse
-
Create a new connection to the default environment of the specified
Concourse Server and return a handle to facilitate interaction.
- connect(String, int, String, String, String) - Static method in class Concourse
-
Create a new connection to the specified environment of the
specified Concourse Server and return a handle to facilitate interaction.
- connect() - Method in class Concourse.ConnectionBuilder
-
Connect to the Concourse deployment described by this
builder.
- ConnectionBuilder() - Constructor for class Concourse.ConnectionBuilder
-
- ConnectionPool - Class in com.cinchapi.concourse
-
A
ConnectionPool manages multiple concurrent connections to Concourse
for a single user.
- ConnectionPool(String, int, String, String, int) - Constructor for class ConnectionPool
-
Construct a new instance.
- ConnectionPool(String, int, String, String, String, int) - Constructor for class ConnectionPool
-
Construct a new instance.
- connectWithPrefs(ConcourseClientPreferences) - Static method in class Concourse
-
Create a new connection using the information specified in the
prefs.
- connectWithPrefs(String) - Static method in class Concourse
-
Create a new connection using the information specified in the prefs
file.
- Constants - Class in com.cinchapi.concourse
-
A collection of driver accessible constant definitions.
- Constants() - Constructor for class Constants
-
- Conversions - Class in com.cinchapi.concourse.util
-
A utility class that defines some
Functions to perform
common conversions.
- Convert - Class in com.cinchapi.concourse.util
-
A collection of functions to convert objects.
- Convert.ResolvableLink - Class in com.cinchapi.concourse.util
-
A special class that is used to indicate that the record(s) to which one
or more
links should point must be resolved by finding all
records that match a criteria.
- copyAndRewindSource(ByteBuffer, ByteBuffer) - Static method in class ByteBuffers
-
Transfer the bytes from source to destination and resets
source so that its position remains unchanged.
- copyConnection() - Method in class Concourse
-
Return a new
Concourse connection that is connected to the same
deployment with the same credentials as this connection.
- copyExistingConnection(Concourse) - Static method in class Concourse
-
Create a new connecting by copying the connection information from the
provided concourse handle.
- count(String) - Method in class Calculator
-
Return the count of all the values stored across key.
- count(String, Collection<Long>) - Method in class Calculator
-
This method assumes that all the values are numeric.
- count(String, Collection<Long>, Timestamp) - Method in class Calculator
-
This method assumes that all the values are numeric.
- count(String, Criteria) - Method in class Calculator
-
Return the count of all the values for
key in
each of the records that match the
Criteria.
- count(String, Criteria, Timestamp) - Method in class Calculator
-
Return the count of all the values for
key in
each of the records that match the
Criteria.
- count(String, long) - Method in class Calculator
-
Return the count of all the values stored for key in
record.
- count(String, long, Timestamp) - Method in class Calculator
-
This method assumes that all the values are numeric.
- count(String, String) - Method in class Calculator
-
Return the count of all the values for key in
each of the records that match the criteria.
- count(String, String, Timestamp) - Method in class Calculator
-
Return the count of all the values at timestamp for key
in
each of the records that match the criteria.
- count(String, Timestamp) - Method in class Calculator
-
Return the count of all the values stored across key at
timestamp.
- create(String) - Static method in class Tag
-
Return a Tag that embeds value.
- create(Callable<E>) - Static method in class ConcurrentLoadingQueue
-
- create(Collection<E>, Callable<E>) - Static method in class ConcurrentLoadingQueue
-
Return a new
ConcurrentLoadingQueue that initially contains the
elements of the given
collection in traversal order of the
collection's iterator and uses the
supplier to populate the queue
on demand.
- create(Criteria) - Static method in class Parsers
-
Return a Parser for the criteria.
- create(Criteria, Multimap<String, Object>) - Static method in class Parsers
-
Return a Parser for the criteria that uses the provided
data for local resolution.
- create(String) - Static method in class Parsers
-
Return a Parser for the ccl statement.
- create(String, Multimap<String, Object>) - Static method in class Parsers
-
Return a Parser for the ccl statement that uses the
provided data for local resolution.
- create(TCriteria) - Static method in class Parsers
-
Return a Parser for the criteria.
- create(TCriteria, Multimap<String, Object>) - Static method in class Parsers
-
Return a Parser for the criteria that uses the provided
data for local resolution.
- createUser(String, String, String) - Method in class Manager
-
Create a user with the specified username, password and
role.
- Criteria - Interface in com.cinchapi.concourse.lang
-
A
Criteria is an object that is used to encapsulate the semantics of
a complex query.
- criteria - Variable in class State
-
- FileOps - Class in com.cinchapi.concourse.util
-
Generic file utility methods that compliment and expand upon those found in
Files and
Files.
- FileOps() - Constructor for class FileOps
-
- find(Criteria) - Method in class Concourse
-
Return the set of records that satisfy the
criteria.
- find(Criteria, Order) - Method in class Concourse
-
Return the set of records that satisfy the
criteria.
- find(Criteria, Page) - Method in class Concourse
-
Return the set of records that satisfy the
criteria.
- find(Criteria, Order, Page) - Method in class Concourse
-
Return the set of records that satisfy the
criteria.
- find(Criteria, Page, Order) - Method in class Concourse
-
Return the set of records that satisfy the
criteria.
- find(String) - Method in class Concourse
-
Return the set of records that satisfy the ccl filter.
- find(String, Object) - Method in class Concourse
-
Return the set of records where key equals value.
- find(String, Object, Order) - Method in class Concourse
-
Return the set of records where key equals value.
- find(String, Object, Page) - Method in class Concourse
-
Return the set of records where key equals value.
- find(String, Object, Order, Page) - Method in class Concourse
-
Return the set of records where key equals value.
- find(String, Object, Page, Order) - Method in class Concourse
-
Return the set of records where key equals value.
- find(String, Object, Timestamp) - Method in class Concourse
-
Return the set of records where key was equal to value at timestamp.
- find(String, Object, Timestamp, Order) - Method in class Concourse
-
Return the set of records where key was equal to value at timestamp.
- find(String, Object, Timestamp, Page) - Method in class Concourse
-
Return the set of records where key was equal to value at timestamp.
- find(String, Object, Timestamp, Order, Page) - Method in class Concourse
-
Return the set of records where key was equal to value at timestamp.
- find(String, Object, Timestamp, Page, Order) - Method in class Concourse
-
Return the set of records where key was equal to value at timestamp.
- find(String, Operator, Object) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to the
value.
- find(String, Operator, Object, Object) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to
value and value2.
- find(String, Operator, Object, Object, Order) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to
value and value2.
- find(String, Operator, Object, Object, Page) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to
value and value2.
- find(String, Operator, Object, Object, Order, Page) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to
value and value2.
- find(String, Operator, Object, Object, Page, Order) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to
value and value2.
- find(String, Operator, Object, Object, Timestamp) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at timestamp that satisfies the
operator in relation to value and value2.
- find(String, Operator, Object, Object, Timestamp, Order) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at timestamp that satisfies the
operator in relation to value and value2.
- find(String, Operator, Object, Object, Timestamp, Page) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at timestamp that satisfies the
operator in relation to value and value2.
- find(String, Operator, Object, Object, Timestamp, Order, Page) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at timestamp that satisfies the
operator in relation to value and value2.
- find(String, Operator, Object, Object, Timestamp, Page, Order) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at timestamp that satisfies the
operator in relation to value and value2.
- find(String, Operator, Object, Order) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to the
value.
- find(String, Operator, Object, Page) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to the
value.
- find(String, Operator, Object, Order, Page) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to the
value.
- find(String, Operator, Object, Page, Order) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to the
value.
- find(String, Operator, Object, Timestamp) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at that satisfies the operator in
relation to the value.
- find(String, Operator, Object, Timestamp, Order) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at that satisfies the operator in
relation to the value.
- find(String, Operator, Object, Timestamp, Page) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at that satisfies the operator in
relation to the value.
- find(String, Operator, Object, Timestamp, Order, Page) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at that satisfies the operator in
relation to the value.
- find(String, Operator, Object, Timestamp, Page, Order) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at that satisfies the operator in
relation to the value.
- find(String, Order) - Method in class Concourse
-
Return the set of records that satisfy the ccl filter.
- find(String, Page) - Method in class Concourse
-
Return the set of records that satisfy the ccl filter.
- find(String, Order, Page) - Method in class Concourse
-
Return the set of records that satisfy the ccl filter.
- find(String, Page, Order) - Method in class Concourse
-
Return the set of records that satisfy the ccl filter.
- find(String, String, Object) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to the
value.
- find(String, String, Object, Object) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to
value and value2.
- find(String, String, Object, Object, Order) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to
value and value2.
- find(String, String, Object, Object, Page) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to
value and value2.
- find(String, String, Object, Object, Order, Page) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to
value and value2.
- find(String, String, Object, Object, Page, Order) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to
value and value2.
- find(String, String, Object, Object, Timestamp) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at timestamp that satisfies the
operator in relation to value and value2.
- find(String, String, Object, Object, Timestamp, Order) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at timestamp that satisfies the
operator in relation to value and value2.
- find(String, String, Object, Object, Timestamp, Page) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at timestamp that satisfies the
operator in relation to value and value2.
- find(String, String, Object, Object, Timestamp, Order, Page) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at timestamp that satisfies the
operator in relation to value and value2.
- find(String, String, Object, Object, Timestamp, Page, Order) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at timestamp that satisfies the
operator in relation to value and value2.
- find(String, String, Object, Order) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to the
value.
- find(String, String, Object, Page) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to the
value.
- find(String, String, Object, Order, Page) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to the
value.
- find(String, String, Object, Page, Order) - Method in class Concourse
-
Return the set of records where the key field contains at
least one value that satisfies the operator in relation to the
value.
- find(String, String, Object, Timestamp) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at timestamp that satisfies the
operator in relation to the value.
- find(String, String, Object, Timestamp, Order) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at timestamp that satisfies the
operator in relation to the value.
- find(String, String, Object, Timestamp, Page) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at timestamp that satisfies the
operator in relation to the value.
- find(String, String, Object, Timestamp, Order, Page) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at timestamp that satisfies the
operator in relation to the value.
- find(String, String, Object, Timestamp, Page, Order) - Method in class Concourse
-
Return the set of records where the key field contained
at least one value at timestamp that satisfies the
operator in relation to the value.
- findNearestSuccessorForTimestamp(Set<Timestamp>, Timestamp) - Static method in class Timestamps
-
Search the chronological set of timestamps to return the index of
a contained timestamp that occurs after the sought timestamp
and more closely than any others.
- findNearestSuccessorForTimestamp(Set<Long>, long) - Static method in class Timestamps
-
Search the chronological set of timestamps to return the index of
a contained timestamp that occurs on or after the sought
timestamp and more closely than any others.
- findOrAdd(String, T) - Method in class Concourse
-
Return the unique record where
key equals
value, or throw a
DuplicateEntryException if multiple
records match the condition.
- findOrInsert(BuildableState, Map<String, Object>) - Method in class Concourse
-
Return the unique record that matches the
criteria, if
one exist or throw a
DuplicateEntryException if multiple records
match.
- findOrInsert(BuildableState, Multimap<String, Object>) - Method in class Concourse
-
Return the unique record that matches the
criteria, if one exist
or throw a
DuplicateEntryException if multiple records match.
- findOrInsert(BuildableState, String) - Method in class Concourse
-
Return the unique record that matches the
criteria, if one exist
or throw a
DuplicateEntryException if multiple records match.
- findOrInsert(Criteria, Map<String, Object>) - Method in class Concourse
-
Return the unique record that matches the
criteria, if one exist
or throw a
DuplicateEntryException if multiple records match.
- findOrInsert(Criteria, Multimap<String, Object>) - Method in class Concourse
-
Return the unique record that matches the
criteria, if one exist
or throw a
DuplicateEntryException if multiple records match.
- findOrInsert(Criteria, String) - Method in class Concourse
-
Return the unique record that matches the
criteria, if one exist
or throw a
DuplicateEntryException if multiple records match.
- findOrInsert(String, Map<String, Object>) - Method in class Concourse
-
Return the unique record that matches the
ccl filter, if one
exist or throw a
DuplicateEntryException if multiple records
match.
- findOrInsert(String, Multimap<String, Object>) - Method in class Concourse
-
Return the unique record that matches the
ccl filter, if one
exist or throw a
DuplicateEntryException if multiple records
match.
- findOrInsert(String, String) - Method in class Concourse
-
Return the unique record that matches the
ccl filter, if one
exist or throw a
DuplicateEntryException if multiple records
match.
- first() - Static method in class Page
-
- floatValue() - Method in class Link
-
- flush() - Method in class StringBuilderWriter
-
- forceClose() - Method in class ConnectionPool
-
Force the connection pool to close regardless of whether it is or is not
in a
closable state.
- from(Path...) - Static method in class ConcourseClientPreferences
-
- from(Path...) - Static method in class ConcourseServerPreferences
-
- fromCurrentWorkingDirectory() - Static method in class ConcourseClientPreferences
-
- fromInstant(Instant) - Static method in class Timestamp
-
Return a
Timestamp that corresponds to the specified
instant.
- fromJoda(DateTime) - Static method in class Timestamp
-
Return the Timestamp that corresponds to the provided joda
DateTime object.
- fromMicros(long) - Static method in class Timestamp
-
Return a Timestamp that corresponds to the provided Unix
timestamp with microsecond precision.
- fromString(String) - Static method in class Timestamp
-
Take the
description and return a
Timestamp that can be
passed to
driver API methods.
- fromString(String) - Static method in class ByteBuffers
-
Return a byte buffer that has the UTF-8 encoding for string.
- fromUserHomeDirectory() - Static method in class ConcourseClientPreferences
-
- generateSecretKey() - Static method in class ClientSecurity
-
Generate a random secret key that can be used for encryption and
decryption.
- get(Object...) - Method in class ReferenceCache
-
Return the cache value associated with the group of args or
null if not value is found.
- get(Collection<String>, Collection<Long>) - Method in class Concourse
-
For each of the keys in each of the records, return the
stored value that was most recently added.
- get(Collection<String>, Collection<Long>, Order) - Method in class Concourse
-
For each of the keys in each of the records, return the
stored value that was most recently added.
- get(Collection<String>, Collection<Long>, Page) - Method in class Concourse
-
For each of the keys in each of the records, return the
stored value that was most recently added.
- get(Collection<String>, Collection<Long>, Order, Page) - Method in class Concourse
-
For each of the keys in each of the records, return the
stored value that was most recently added.
- get(Collection<String>, Collection<Long>, Page, Order) - Method in class Concourse
-
For each of the keys in each of the records, return the
stored value that was most recently added.
- get(Collection<String>, Collection<Long>, Timestamp) - Method in class Concourse
-
For each of the keys in each of the records, return the
stored value that was most recently added at timestamp.
- get(Collection<String>, Collection<Long>, Timestamp, Order) - Method in class Concourse
-
For each of the keys in each of the records, return the
stored value that was most recently added at timestamp.
- get(Collection<String>, Collection<Long>, Timestamp, Page) - Method in class Concourse
-
For each of the keys in each of the records, return the
stored value that was most recently added at timestamp.
- get(Collection<String>, Collection<Long>, Timestamp, Order, Page) - Method in class Concourse
-
For each of the keys in each of the records, return the
stored value that was most recently added at timestamp.
- get(Collection<String>, Collection<Long>, Timestamp, Page, Order) - Method in class Concourse
-
For each of the keys in each of the records, return the
stored value that was most recently added at timestamp.
- get(Collection<String>, Criteria) - Method in class Concourse
-
For each of the keys in every record that matches the
criteria, return the stored value that was most recently
added.
- get(Collection<String>, Criteria, Order) - Method in class Concourse
-
For each of the keys in every record that matches the
criteria, return the stored value that was most recently
added.
- get(Collection<String>, Criteria, Page) - Method in class Concourse
-
For each of the keys in every record that matches the
criteria, return the stored value that was most recently
added.
- get(Collection<String>, Criteria, Order, Page) - Method in class Concourse
-
For each of the keys in every record that matches the
criteria, return the stored value that was most recently
added.
- get(Collection<String>, Criteria, Page, Order) - Method in class Concourse
-
For each of the keys in every record that matches the
criteria, return the stored value that was most recently
added.
- get(Collection<String>, Criteria, Timestamp) - Method in class Concourse
-
For each of the keys in every record that matches the
criteria, return the stored value that was most recently
added at timestamp.
- get(Collection<String>, Criteria, Timestamp, Order) - Method in class Concourse
-
For each of the keys in every record that matches the
criteria, return the stored value that was most recently
added at timestamp.
- get(Collection<String>, Criteria, Timestamp, Page) - Method in class Concourse
-
For each of the keys in every record that matches the
criteria, return the stored value that was most recently
added at timestamp.
- get(Collection<String>, Criteria, Timestamp, Order, Page) - Method in class Concourse
-
For each of the keys in every record that matches the
criteria, return the stored value that was most recently
added at timestamp.
- get(Collection<String>, Criteria, Timestamp, Page, Order) - Method in class Concourse
-
For each of the keys in every record that matches the
criteria, return the stored value that was most recently
added at timestamp.
- get(Collection<String>, long) - Method in class Concourse
-
For each of the keys in record, return the stored value
that was most recently added.
- get(Collection<String>, long, Timestamp) - Method in class Concourse
-
For each of the keys in record, return the stored value
that was most recently added at timestamp.
- get(Collection<String>, String) - Method in class Concourse
-
For each of the keys in every record that matches the ccl
filter, return the stored value that was most recently added.
- get(Collection<String>, String, Order) - Method in class Concourse
-
For each of the keys in every record that matches the ccl
filter, return the stored value that was most recently added.
- get(Collection<String>, String, Page) - Method in class Concourse
-
For each of the keys in every record that matches the ccl
filter, return the stored value that was most recently added.
- get(Collection<String>, String, Order, Page) - Method in class Concourse
-
For each of the keys in every record that matches the ccl
filter, return the stored value that was most recently added.
- get(Collection<String>, String, Page, Order) - Method in class Concourse
-
For each of the keys in every record that matches the ccl
filter, return the stored value that was most recently added.
- get(Collection<String>, String, Timestamp) - Method in class Concourse
-
For each of the keys in every record that matches the ccl
filter, return the stored value that was most recently added at
timestamp.
- get(Collection<String>, String, Timestamp, Order) - Method in class Concourse
-
For each of the keys in every record that matches the ccl
filter, return the stored value that was most recently added at
timestamp.
- get(Collection<String>, String, Timestamp, Page) - Method in class Concourse
-
For each of the keys in every record that matches the ccl
filter, return the stored value that was most recently added at
timestamp.
- get(Collection<String>, String, Timestamp, Order, Page) - Method in class Concourse
-
For each of the keys in every record that matches the ccl
filter, return the stored value that was most recently added at
timestamp.
- get(Collection<String>, String, Timestamp, Page, Order) - Method in class Concourse
-
For each of the keys in every record that matches the ccl
filter, return the stored value that was most recently added at
timestamp.
- get(Criteria) - Method in class Concourse
-
For every key in every record that matches the criteria, return
the stored value that was most recently added.
- get(Criteria, Order) - Method in class Concourse
-
For every key in every record that matches the criteria, return
the stored value that was most recently added.
- get(Criteria, Page) - Method in class Concourse
-
For every key in every record that matches the criteria, return
the stored value that was most recently added.
- get(Criteria, Order, Page) - Method in class Concourse
-
For every key in every record that matches the criteria, return
the stored value that was most recently added.
- get(Criteria, Page, Order) - Method in class Concourse
-
For every key in every record that matches the criteria, return
the stored value that was most recently added.
- get(Criteria, Timestamp) - Method in class Concourse
-
For every key in every record that matches the criteria, return
the stored value that was most recently added at timestamp .
- get(Criteria, Timestamp, Order) - Method in class Concourse
-
For every key in every record that matches the criteria, return
the stored value that was most recently added at timestamp .
- get(Criteria, Timestamp, Page) - Method in class Concourse
-
For every key in every record that matches the criteria, return
the stored value that was most recently added at timestamp .
- get(Criteria, Timestamp, Order, Page) - Method in class Concourse
-
For every key in every record that matches the criteria, return
the stored value that was most recently added at timestamp .
- get(Criteria, Timestamp, Page, Order) - Method in class Concourse
-
For every key in every record that matches the criteria, return
the stored value that was most recently added at timestamp .
- get(String) - Method in class Concourse
-
For every key in every record that matches the ccl filter, return
the stored value that was most recently added.
- get(String, Collection<Long>) - Method in class Concourse
-
For each of the records, return the stored value in the
key field that was most recently added.
- get(String, Collection<Long>, Order) - Method in class Concourse
-
For each of the records, return the stored value in the
key field that was most recently added.
- get(String, Collection<Long>, Page) - Method in class Concourse
-
For each of the records, return the stored value in the
key field that was most recently added.
- get(String, Collection<Long>, Order, Page) - Method in class Concourse
-
For each of the records, return the stored value in the
key field that was most recently added.
- get(String, Collection<Long>, Page, Order) - Method in class Concourse
-
For each of the records, return the stored value in the
key field that was most recently added.
- get(String, Collection<Long>, Timestamp) - Method in class Concourse
-
For each of the records, return the stored value in the
key field that was most recently added at timestamp
- get(String, Collection<Long>, Timestamp, Order) - Method in class Concourse
-
For each of the records, return the stored value in the
key field that was most recently added at timestamp
- get(String, Collection<Long>, Timestamp, Page) - Method in class Concourse
-
For each of the records, return the stored value in the
key field that was most recently added at timestamp
- get(String, Collection<Long>, Timestamp, Order, Page) - Method in class Concourse
-
For each of the records, return the stored value in the
key field that was most recently added at timestamp
- get(String, Collection<Long>, Timestamp, Page, Order) - Method in class Concourse
-
For each of the records, return the stored value in the
key field that was most recently added at timestamp
- get(String, Criteria) - Method in class Concourse
-
For every record that matches the criteria, return the stored
value in the key field that was most recently added.
- get(String, Criteria, Order) - Method in class Concourse
-
For every record that matches the criteria, return the stored
value in the key field that was most recently added.
- get(String, Criteria, Page) - Method in class Concourse
-
For every record that matches the criteria, return the stored
value in the key field that was most recently added.
- get(String, Criteria, Order, Page) - Method in class Concourse
-
For every record that matches the criteria, return the stored
value in the key field that was most recently added.
- get(String, Criteria, Page, Order) - Method in class Concourse
-
For every record that matches the criteria, return the stored
value in the key field that was most recently added.
- get(String, Criteria, Timestamp) - Method in class Concourse
-
For every record that matches the criteria, return the
stored value in the key field that was most recently added at
timestamp.
- get(String, Criteria, Timestamp, Order) - Method in class Concourse
-
For every record that matches the criteria, return the
stored value in the key field that was most recently added at
timestamp.
- get(String, Criteria, Timestamp, Page) - Method in class Concourse
-
For every record that matches the criteria, return the
stored value in the key field that was most recently added at
timestamp.
- get(String, Criteria, Timestamp, Order, Page) - Method in class Concourse
-
For every record that matches the criteria, return the
stored value in the key field that was most recently added at
timestamp.
- get(String, Criteria, Timestamp, Page, Order) - Method in class Concourse
-
For every record that matches the criteria, return the
stored value in the key field that was most recently added at
timestamp.
- get(String, long) - Method in class Concourse
-
Return the stored value that was most recently added for key in
record.
- get(String, long, Timestamp) - Method in class Concourse
-
Return the stored value that was most recently added for key in
record at timestamp.
- get(String, Long) - Method in class Concourse
-
Return the stored value that was most recently added for key in
record.
- get(String, Long, Timestamp) - Method in class Concourse
-
Return the stored value that was most recently added for key in
record at timestamp.
- get(String, Order) - Method in class Concourse
-
For every key in every record that matches the ccl filter, return
the stored value that was most recently added.
- get(String, Page) - Method in class Concourse
-
For every key in every record that matches the ccl filter, return
the stored value that was most recently added.
- get(String, Order, Page) - Method in class Concourse
-
For every key in every record that matches the ccl filter, return
the stored value that was most recently added.
- get(String, Page, Order) - Method in class Concourse
-
For every key in every record that matches the ccl filter, return
the stored value that was most recently added.
- get(String, String) - Method in class Concourse
-
For every record that matches the ccl filter, return the
stored value in the key field that was most recently added.
- get(String, String, Order) - Method in class Concourse
-
For every record that matches the ccl filter, return the
stored value in the key field that was most recently added.
- get(String, String, Page) - Method in class Concourse
-
For every record that matches the ccl filter, return the
stored value in the key field that was most recently added.
- get(String, String, Order, Page) - Method in class Concourse
-
For every record that matches the ccl filter, return the
stored value in the key field that was most recently added.
- get(String, String, Page, Order) - Method in class Concourse
-
For every record that matches the ccl filter, return the
stored value in the key field that was most recently added.
- get(String, String, Timestamp) - Method in class Concourse
-
For every record that matches the ccl filter, return the
stored value in the key field that was most recently added at
timestamp.
- get(String, String, Timestamp, Order) - Method in class Concourse
-
For every record that matches the ccl filter, return the
stored value in the key field that was most recently added at
timestamp.
- get(String, String, Timestamp, Page) - Method in class Concourse
-
For every record that matches the ccl filter, return the
stored value in the key field that was most recently added at
timestamp.
- get(String, String, Timestamp, Order, Page) - Method in class Concourse
-
For every record that matches the ccl filter, return the
stored value in the key field that was most recently added at
timestamp.
- get(String, String, Timestamp, Page, Order) - Method in class Concourse
-
For every record that matches the ccl filter, return the
stored value in the key field that was most recently added at
timestamp.
- get(String, Timestamp) - Method in class Concourse
-
For every key in every record that matches the ccl filter,
return the stored value that was most recently added.
- get(String, Timestamp, Order) - Method in class Concourse
-
For every key in every record that matches the ccl filter,
return the stored value that was most recently added.
- get(String, Timestamp, Page) - Method in class Concourse
-
For every key in every record that matches the ccl filter,
return the stored value that was most recently added.
- get(String, Timestamp, Order, Page) - Method in class Concourse
-
For every key in every record that matches the ccl filter,
return the stored value that was most recently added.
- get(String, Timestamp, Page, Order) - Method in class Concourse
-
For every key in every record that matches the ccl filter,
return the stored value that was most recently added.
- get(ByteBuffer, int) - Static method in class ByteBuffers
-
Return a ByteBuffer that has a copy of length bytes from
buffer starting from the current position.
- get(String, String...) - Static method in class MorePaths
-
- get(String) - Static method in class Resources
-
Finds a resource with a given name.
- getAbsolutePath(String) - Static method in class Resources
-
Find a resource with a given name and return an absolute file
path to access that resource using File path based APIs.
- getBoolean(ByteBuffer) - Static method in class ByteBuffers
-
Relative get method.
- getBoolean() - Static method in class Random
-
Return a random boolean value.
- getBufferDirectory() - Method in class ConcourseServerPreferences
-
The absolute path to the directory where the Buffer data is stored.
- getBufferPageSize() - Method in class ConcourseServerPreferences
-
The size for each page in the Buffer.
- getBuild() - Method in class Version
-
Returns the build metadata for this Version.
- getBuilder(String...) - Static method in class Processes
-
Create a
ProcessBuilder that, on the appropriate platforms,
sources the standard interactive profile for the user (i.e.
- getBuilderWithPipeSupport(String...) - Static method in class Processes
-
Create a
ProcessBuilder that, on the appropriate platforms,
sources the standard interactive profile for the user (i.e.
- getBytes(Serializable) - Static method in class Serializables
-
- getCcl() - Method in class Convert.ResolvableLink
-
Return the ccl string that should be used for resolving link
targets.
- getCclString() - Method in interface Criteria
-
- getClientPort() - Method in class ConcourseServerPreferences
-
The listener port (1-65535) for client connections.
- getCompanionPort(int) - Static method in class Networking
-
Return the companion port for the specified one.
- getCompanionPort(int, int) - Static method in class Networking
-
Return the companion port for the specified one.
- getConnection() - Method in class ConnectionPool
-
Get a connection from the queue of available ones.
- getCurrentPid() - Static method in class Processes
-
Return the pid of the current process.
- getDatabaseDirectory() - Method in class ConcourseServerPreferences
-
The absolute path to the directory where the Database record and index
files are stored.
- getDefaultEnvironment() - Method in class ConcourseServerPreferences
-
The default environment that is automatically loaded when the server
starts and is used whenever a client does not specify an environment for
its connection.
- getDouble() - Static method in class Random
-
Return a random double value.
- getEnableConsoleLogging() - Method in class ConcourseServerPreferences
-
Determine whether log messages should also be printed to the console
(STDOUT).
- getEnum(String, T) - Method in class PreferencesHandler
-
Get the enum value associated with the given key.
- getEnum(ByteBuffer, Class<T>) - Static method in class ByteBuffers
-
Relative get method.
- getEnvironment() - Method in class ConcourseClientPreferences
-
Return the value associated with the environment key.
- getFloat() - Static method in class Random
-
Return a random float value.
- getHost() - Method in class ConcourseClientPreferences
-
Return the value associated with the host key.
- getInstant() - Method in class Timestamp
-
Return an
Instant that corresponds to the point on the time-line
represented by this
Timestamp.
- getInt() - Static method in class Random
-
Return a random integer value.
- getIpAddress(String) - Static method in class Networking
-
Get the accessible IP Address for the host.
- getJmxPort() - Method in class ConcourseServerPreferences
-
The listener port (1-65535) for management commands via JMX.
- getJoda() - Method in class Timestamp
-
Return the Joda DateTime object that corresponds to this
Timestamp.
- getKey() - Method in class Convert.ResolvableLink
-
Deprecated.
- getKeyDestination(String) - Static method in class Navigation
-
Given a navigation scheme, return the destination to which the scheme
navigates.
- getLogLevel() - Method in class ConcourseServerPreferences
-
# The amount of runtime information logged by the system.
- getLong() - Static method in class Random
-
Return a random long value.
- getMajor() - Method in class Version
-
Return the major component of this Version.
- getMicros() - Method in class Timestamp
-
Return the number of microseconds since the Unix epoch that is
represented by this Timestamp.
- getMinor() - Method in class Version
-
Return the minor component of this Version.
- getNegativeNumber() - Static method in class Random
-
Return a random negative number.
- getNumber() - Static method in class Random
-
Return a random number value.
- getObject() - Static method in class Random
-
Return a random object value.
- getOpenPort() - Static method in class Networking
-
Get an open port on the local machine in the port range between
and .
- getPassword() - Method in class ConcourseClientPreferences
-
Return the value associated with the password key.
- getPasswordExplicit() - Method in class ConcourseClientPreferences
-
Return the value associated with the password key, if it is
explicitly defined in the prefs file.
- getPatch() - Method in class Version
-
Return the patch component of this Version.
- getPort() - Method in class ConcourseClientPreferences
-
Return the value associated with the port key.
- getPositiveNumber() - Static method in class Random
-
Return a random positive long value.
- getRemaining(ByteBuffer) - Static method in class ByteBuffers
-
Return a ByteBuffer that has a copy of all the remaining bytes from
buffer starting from the current position.
- getScaleCount() - Static method in class Random
-
- getServerEnvironment() - Method in class Concourse
-
Return the name of the connected environment.
- getServerVersion() - Method in class Concourse
-
Return the version of the connected server.
- getShutdownPort() - Method in class ConcourseServerPreferences
-
The listener port (1-65535) for shutdown commands.
- getSimpleString() - Static method in class Random
-
Return a simple string with no digits or spaces.
- getSize(String, long) - Method in class PreferencesHandler
-
Get the size description associated with the given key.
- getStdErr(Process) - Static method in class Processes
-
Get the stderr for process.
- getStdOut(Process) - Static method in class Processes
-
Get the stdout for process.
- getString(ByteBuffer) - Static method in class ByteBuffers
-
Relative get method.
- getString(ByteBuffer, Charset) - Static method in class ByteBuffers
-
Relative get method.
- getString() - Static method in class Random
-
Return a string, possibly with digits.
- getStringNoDigits() - Static method in class Random
-
Return a get string, with no digits.
- getUserHome() - Static method in class FileOps
-
Return the home directory of the user of the parent process for this JVM.
- getUsername() - Method in class ConcourseClientPreferences
-
Return the value associated with the username key.
- getValue() - Method in class Convert.ResolvableLink
-
Deprecated.
- getVersion(Class<?>) - Static method in class Version
-
Return the Version for clazz.
- getWorkingDirectory() - Static method in class FileOps
-
Get the working directory of this JVM, which is the directory from which
the process is launched.
- go(int) - Method in class Page
-
Jump to
page Page while keeping the same limit.
- grant(String, String) - Method in class Manager
-
Grant the permission to the user with username in the
default environment.
- grant(String, String, String) - Method in class Manager
-
Grant the permission to the user with username in the
specified environment.
- group(Criteria) - Method in class StartState
-
Add a sub criteria to the Criteria that is building.
- group(Object) - Method in class StartState
-
Add a sub criteria to the Criteria that is building.
- gson() - Static method in class DataServices
-
Return a serializer for JSON.
- scale(Number, Number, Number, Number, Number) - Static method in class Numbers
-
Scale number, which is between rawMin and rawMax
to a value between scaledMin and scaleMax.
- search(String, String) - Method in class Concourse
-
Perform a full text search for
query against the
key
field and return the records that contain a
String or
Tag
value that matches.
- select(Collection<Long>) - Method in class Concourse
-
Return all the data that is currently stored in each of the
records.
- select(Collection<Long>, Order) - Method in class Concourse
-
Return all the data that is currently stored in each of the
records.
- select(Collection<Long>, Page) - Method in class Concourse
-
Return all the data that is currently stored in each of the
records.
- select(Collection<Long>, Order, Page) - Method in class Concourse
-
Return all the data that is currently stored in each of the
records.
- select(Collection<Long>, Page, Order) - Method in class Concourse
-
Return all the data that is currently stored in each of the
records.
- select(Collection<Long>, Timestamp) - Method in class Concourse
-
Return all the data that was stored in each of the records at
timestamp.
- select(Collection<Long>, Timestamp, Order) - Method in class Concourse
-
Return all the data that was stored in each of the records at
timestamp.
- select(Collection<Long>, Timestamp, Page) - Method in class Concourse
-
Return all the data that was stored in each of the records at
timestamp.
- select(Collection<Long>, Timestamp, Order, Page) - Method in class Concourse
-
Return all the data that was stored in each of the records at
timestamp.
- select(Collection<Long>, Timestamp, Page, Order) - Method in class Concourse
-
Return all the data that was stored in each of the records at
timestamp.
- select(Collection<String>, Collection<Long>) - Method in class Concourse
-
Return all the values stored for each of the keys in each of the
records.
- select(Collection<String>, Collection<Long>, Order) - Method in class Concourse
-
Return all the values stored for each of the keys in each of the
records.
- select(Collection<String>, Collection<Long>, Page) - Method in class Concourse
-
Return all the values stored for each of the keys in each of the
records.
- select(Collection<String>, Collection<Long>, Order, Page) - Method in class Concourse
-
Return all the values stored for each of the keys in each of the
records.
- select(Collection<String>, Collection<Long>, Page, Order) - Method in class Concourse
-
Return all the values stored for each of the keys in each of the
records.
- select(Collection<String>, Collection<Long>, Timestamp) - Method in class Concourse
-
Return all the values stored for each of the keys in each of the
records at timestamp.
- select(Collection<String>, Collection<Long>, Timestamp, Order) - Method in class Concourse
-
Return all the values stored for each of the keys in each of the
records at timestamp.
- select(Collection<String>, Collection<Long>, Timestamp, Page) - Method in class Concourse
-
Return all the values stored for each of the keys in each of the
records at timestamp.
- select(Collection<String>, Collection<Long>, Timestamp, Order, Page) - Method in class Concourse
-
Return all the values stored for each of the keys in each of the
records at timestamp.
- select(Collection<String>, Collection<Long>, Timestamp, Page, Order) - Method in class Concourse
-
Return all the values stored for each of the keys in each of the
records at timestamp.
- select(Collection<String>, Criteria) - Method in class Concourse
-
Return all the values stored for each of the keys in every record
that matches the criteria.
- select(Collection<String>, Criteria, Order) - Method in class Concourse
-
Return all the values stored for each of the keys in every record
that matches the criteria.
- select(Collection<String>, Criteria, Page) - Method in class Concourse
-
Return all the values stored for each of the keys in every record
that matches the criteria.
- select(Collection<String>, Criteria, Order, Page) - Method in class Concourse
-
Return all the values stored for each of the keys in every record
that matches the criteria.
- select(Collection<String>, Criteria, Page, Order) - Method in class Concourse
-
Return all the values stored for each of the keys in every record
that matches the criteria.
- select(Collection<String>, Criteria, Timestamp) - Method in class Concourse
-
Return all the values stored for each of the keys at
timestamp in every record that matches the criteria
- select(Collection<String>, Criteria, Timestamp, Order) - Method in class Concourse
-
Return all the values stored for each of the keys at
timestamp in every record that matches the criteria
- select(Collection<String>, Criteria, Timestamp, Page) - Method in class Concourse
-
Return all the values stored for each of the keys at
timestamp in every record that matches the criteria
- select(Collection<String>, Criteria, Timestamp, Order, Page) - Method in class Concourse
-
Return all the values stored for each of the keys at
timestamp in every record that matches the criteria
- select(Collection<String>, Criteria, Timestamp, Page, Order) - Method in class Concourse
-
Return all the values stored for each of the keys at
timestamp in every record that matches the criteria
- select(Collection<String>, long) - Method in class Concourse
-
Return all the values stored for each of the keys in
record.
- select(Collection<String>, long, Timestamp) - Method in class Concourse
-
Return all the values stored for each of the keys in
record at timestamp.
- select(Collection<String>, String) - Method in class Concourse
-
Return all the values stored for each of the keys in every record
that matches the ccl filter.
- select(Collection<String>, String, Order) - Method in class Concourse
-
Return all the values stored for each of the keys in every record
that matches the ccl filter.
- select(Collection<String>, String, Page) - Method in class Concourse
-
Return all the values stored for each of the keys in every record
that matches the ccl filter.
- select(Collection<String>, String, Order, Page) - Method in class Concourse
-
Return all the values stored for each of the keys in every record
that matches the ccl filter.
- select(Collection<String>, String, Page, Order) - Method in class Concourse
-
Return all the values stored for each of the keys in every record
that matches the ccl filter.
- select(Collection<String>, String, Timestamp) - Method in class Concourse
-
Return all the values stored for each of the keys at
timestamp in every record that matches the ccl filter.
- select(Collection<String>, String, Timestamp, Order) - Method in class Concourse
-
Return all the values stored for each of the keys at
timestamp in every record that matches the ccl filter.
- select(Collection<String>, String, Timestamp, Page) - Method in class Concourse
-
Return all the data from every record that matches criteria.
- select(Collection<String>, String, Timestamp, Order, Page) - Method in class Concourse
-
Return all the data from every record that matches criteria.
- select(Collection<String>, String, Timestamp, Page, Order) - Method in class Concourse
-
Return all the data from every record that matches criteria.
- select(Criteria) - Method in class Concourse
-
Return all the data from every record that matches criteria.
- select(Criteria, Order) - Method in class Concourse
-
Return all the data from every record that matches criteria.
- select(Criteria, Page) - Method in class Concourse
-
Return all the data from every record that matches criteria.
- select(Criteria, Order, Page) - Method in class Concourse
-
Return all the data from every record that matches criteria.
- select(Criteria, Page, Order) - Method in class Concourse
-
Return all the data from every record that matches criteria.
- select(Criteria, Timestamp) - Method in class Concourse
-
Return all the data at timestamp from every record that
matches the criteria.
- select(Criteria, Timestamp, Order) - Method in class Concourse
-
Return all the data at timestamp from every record that
matches the criteria.
- select(Criteria, Timestamp, Page) - Method in class Concourse
-
Return all the data at timestamp from every record that
matches the criteria.
- select(Criteria, Timestamp, Order, Page) - Method in class Concourse
-
Return all the data at timestamp from every record that
matches the criteria.
- select(Criteria, Timestamp, Page, Order) - Method in class Concourse
-
Return all the data at timestamp from every record that
matches the criteria.
- select(long) - Method in class Concourse
-
Return all the data from record.
- select(long, Timestamp) - Method in class Concourse
-
Return all the data from record at timestamp.
- select(Long) - Method in class Concourse
-
Return all the data from record.
- select(Long, Timestamp) - Method in class Concourse
-
Return all the data from record at timestamp.
- select(String) - Method in class Concourse
-
Return all the data from every record that matches ccl filter.
- select(String, Collection<Long>) - Method in class Concourse
-
Return all values stored for key in each of the records.
- select(String, Collection<Long>, Order) - Method in class Concourse
-
Return all values stored for key in each of the records.
- select(String, Collection<Long>, Page) - Method in class Concourse
-
Return all values stored for key in each of the records.
- select(String, Collection<Long>, Order, Page) - Method in class Concourse
-
Return all values stored for key in each of the records.
- select(String, Collection<Long>, Page, Order) - Method in class Concourse
-
Return all values stored for key in each of the records.
- select(String, Collection<Long>, Timestamp) - Method in class Concourse
-
Return all values stored for key in each of the records
at timestamp.
- select(String, Collection<Long>, Timestamp, Order) - Method in class Concourse
-
Return all values stored for key in each of the records
at timestamp.
- select(String, Collection<Long>, Timestamp, Page) - Method in class Concourse
-
Return all values stored for key in each of the records
at timestamp.
- select(String, Collection<Long>, Timestamp, Order, Page) - Method in class Concourse
-
Return all values stored for key in each of the records
at timestamp.
- select(String, Collection<Long>, Timestamp, Page, Order) - Method in class Concourse
-
Return all values stored for key in each of the records
at timestamp.
- select(String, Criteria) - Method in class Concourse
-
Return all the values stored for key in every record that
matches the criteria.
- select(String, Criteria, Order) - Method in class Concourse
-
Return all the values stored for key in every record that
matches the criteria.
- select(String, Criteria, Page) - Method in class Concourse
-
Return all the values stored for key in every record that
matches the criteria.
- select(String, Criteria, Order, Page) - Method in class Concourse
-
Return all the values stored for key in every record that
matches the criteria.
- select(String, Criteria, Page, Order) - Method in class Concourse
-
Return all the values stored for key in every record that
matches the criteria.
- select(String, Criteria, Timestamp) - Method in class Concourse
-
Return all the values stored for key at timestamp in
every record that matches the criteria.
- select(String, Criteria, Timestamp, Order) - Method in class Concourse
-
Return all the values stored for key at timestamp in
every record that matches the criteria.
- select(String, Criteria, Timestamp, Page) - Method in class Concourse
-
Return all the values stored for key at timestamp in
every record that matches the criteria.
- select(String, Criteria, Timestamp, Order, Page) - Method in class Concourse
-
Return all the values stored for key at timestamp in
every record that matches the criteria.
- select(String, Criteria, Timestamp, Page, Order) - Method in class Concourse
-
Return all the values stored for key at timestamp in
every record that matches the criteria.
- select(String, long) - Method in class Concourse
-
Return all the values stored for key in record.
- select(String, long, Timestamp) - Method in class Concourse
-
Return all the values stored for key in record at
timestamp.
- select(String, Long) - Method in class Concourse
-
Return all the values stored for key in record.
- select(String, Long, Timestamp) - Method in class Concourse
-
Return all the values stored for key in record at
timestamp.
- select(String, Order) - Method in class Concourse
-
Return all the data from every record that matches ccl filter.
- select(String, Page) - Method in class Concourse
-
Return all the data from every record that matches ccl filter.
- select(String, Order, Page) - Method in class Concourse
-
Return all the data from every record that matches ccl filter.
- select(String, Page, Order) - Method in class Concourse
-
Return all the data from every record that matches ccl filter.
- select(String, String) - Method in class Concourse
-
Return all the values stored for key in every record that
matches the ccl filter.
- select(String, String, Order) - Method in class Concourse
-
Return all the values stored for key in every record that
matches the ccl filter.
- select(String, String, Page) - Method in class Concourse
-
Return all the values stored for key in every record that
matches the ccl filter.
- select(String, String, Order, Page) - Method in class Concourse
-
Return all the values stored for key in every record that
matches the ccl filter.
- select(String, String, Page, Order) - Method in class Concourse
-
Return all the values stored for key in every record that
matches the ccl filter.
- select(String, String, Timestamp) - Method in class Concourse
-
Return all the values stored for key at timestamp in
every record that matches the ccl filter.
- select(String, String, Timestamp, Order) - Method in class Concourse
-
Return all the values stored for key at timestamp in
every record that matches the ccl filter.
- select(String, String, Timestamp, Page) - Method in class Concourse
-
Return all the values stored for key at timestamp in
every record that matches the ccl filter.
- select(String, String, Timestamp, Order, Page) - Method in class Concourse
-
Return all the values stored for key at timestamp in
every record that matches the ccl filter.
- select(String, String, Timestamp, Page, Order) - Method in class Concourse
-
Return all the values stored for key at timestamp in
every record that matches the ccl filter.
- select(String, Timestamp) - Method in class Concourse
-
Return all the data at timestamp from every record that
matches the ccl filter.
- select(String, Timestamp, Order) - Method in class Concourse
-
Return all the data at timestamp from every record that
matches the ccl filter.
- select(String, Timestamp, Page) - Method in class Concourse
-
Return all the data at timestamp from every record that
matches the ccl filter.
- select(String, Timestamp, Order, Page) - Method in class Concourse
-
Return all the data at timestamp from every record that
matches the ccl filter.
- select(String, Timestamp, Page, Order) - Method in class Concourse
-
Return all the data at timestamp from every record that
matches the ccl filter.
- sequence(long, long) - Static method in class TSets
-
Return a
Set that contains long integers
from the first
parameter
to the last one in sequential order.
- Serializables - Class in com.cinchapi.concourse.util
-
A collection of methods to make native java serialization/deserialization
more convenient and interoperable with NIO utilities like file channels and
byte buffers.
- set(String, Object, Collection<Long>) - Method in class Concourse
-
In each of the records, atomically remove all the values stored
for key and then add key as value in the
respective record.
- set(String, T, long) - Method in class Concourse
-
Atomically remove all the values stored for key in record
and add then key as value.
- setBufferDirectory(String) - Method in class ConcourseServerPreferences
-
Set the value associated with the buffer_directory key.
- setBufferPageSize(long) - Method in class ConcourseServerPreferences
-
Set the value associated with the buffer_page_size key.
- setClientPort(int) - Method in class ConcourseServerPreferences
-
Set the value associated with the client_port key.
- setDatabaseDirectory(String) - Method in class ConcourseServerPreferences
-
Set the value associated with the database_directory key.
- setDefaultEnvironment(String) - Method in class ConcourseServerPreferences
-
Set the value associated with the default_environment key.
- setEnableConsoleLogging(boolean) - Method in class ConcourseServerPreferences
-
Set the value associated with the enable_console_logging key.
- setEnvironment(String) - Method in class ConcourseClientPreferences
-
Set the value associated with the environment key.
- setHost(String) - Method in class ConcourseClientPreferences
-
Set the value associated with the host key.
- setJmxPort(int) - Method in class ConcourseServerPreferences
-
Set the value associated with the jmx_port key.
- setKeyName(String) - Method in class PrettyLinkedHashMap
-
Set the keyName to name.
- setLogLevel(Level) - Method in class ConcourseServerPreferences
-
Set the value associated with the log_level key.
- setPassword(char[]) - Method in class ConcourseClientPreferences
-
Set the value associated with the password key.
- setPort(int) - Method in class ConcourseClientPreferences
-
Set the value associated with the port key.
- setRowName(String) - Method in class PrettyLinkedTableMap
-
Set the rowName to name.
- setShutdownPort(int) - Method in class ConcourseServerPreferences
-
Set the value associated with the shutdown_port key.
- setUsername(String) - Method in class ConcourseClientPreferences
-
Set the value associated with the username key.
- setValueName(String) - Method in class PrettyLinkedHashMap
-
Set the valueName to name
- singleValued(String, Map<Long, V>) - Static method in class SortableColumn
-
- singleValued(Map<Long, Map<String, V>>) - Static method in interface SortableTable
-
- singleValued(String, Map<Long, TObject>) - Static method in class DataColumn
-
Return a
DataColumn that contains single-valued cells of
TObject values that are converted to their Java equivalents.
- singleValued(Map<String, TObject>) - Static method in class DataRow
-
Return a
DataRow that contains single value cells
TObject values that are converted to their Java equivalents.
- singleValued(Map<Long, Map<String, TObject>>) - Static method in class DataTable
-
Return a
DataTable that contains single value cells
TObject values that are converted to their Java equivalents.
- size(int) - Method in class Page
-
Set this
Page to include up to
size items.
- size() - Method in class Transformers.LazyTransformSet
-
- sized(int) - Static method in class Page
-
Return the first
Page with
size items.
- skip() - Method in class Page
-
- sleep() - Static method in class Random
-
Pause execution for a random number of milliseconds between 1 and 1000 (1
second).
- slice(ByteBuffer, int) - Static method in class ByteBuffers
-
Return a new ByteBuffer whose content is a shared subsequence of the
content in buffer starting at the current position to
current position + length (non-inclusive).
- slice(ByteBuffer, int, int) - Static method in class ByteBuffers
-
Return a new ByteBuffer whose content is a shared subsequence of the
content in buffer starting at position to
position + length (non-inclusive).
- sort(Sorter<T>) - Method in interface Sortable
-
Sort this object using the sorter
- sort(Sorter<T>, long) - Method in interface Sortable
-
Sort this object using the sorter with the at timestamp
as a contextual reference.
- sort(Sorter<V>) - Method in class SortableColumn
-
- sort(Sorter<V>, long) - Method in class SortableColumn
-
- sort(Sorter<V>) - Method in class SortableSet
-
- sort(Sorter<V>, long) - Method in class SortableSet
-
- sort(Sorter<V>) - Method in class SortableTable.ForwardingSortableTable
-
- sort(Sorter<V>, long) - Method in class SortableTable.ForwardingSortableTable
-
- sort(Map<Long, Map<String, V>>) - Method in interface Sorter
-
Sort the data.
- sort(Map<Long, Map<String, V>>, Long) - Method in interface Sorter
-
Sort the data using the at timestamp as temporal binding for
missing value lookups when an order component does not explicitly specify
a timestamp.
- Sort - Class in com.cinchapi.concourse.lang.sort
-
Serves as an alias for
Order
- Sortable<T> - Interface in com.cinchapi.concourse.data.sort
-
- SortableColumn<V> - Class in com.cinchapi.concourse.data.sort
-
- SortableSet<V> - Class in com.cinchapi.concourse.data.sort
-
A
Set whose contents can be sorted using a
Sorter
- SortableTable<V> - Interface in com.cinchapi.concourse.data.sort
-
- SortableTable.ForwardingSortableTable<V> - Class in com.cinchapi.concourse.data.sort
-
A
SortableTable that forwards to another delegate and lazily
sorts upon request.
- Sorter<V> - Interface in com.cinchapi.concourse.data.sort
-
- spec() - Method in class BuildableOrderState
-
- spec() - Method in class NoOrder
-
- spec() - Method in interface Order
-
Return the order specification, expressed as an ordered list of
components containing each key, an optional
Timestamp and the the corresponding direction ordinal (e.g.
- SPIN_THRESHOLD_IN_MILLIS - Static variable in class ConcurrentMaps
-
The amount of time to spin before backing off and waiting.
- stage() - Method in class Concourse
-
Start a new transaction.
- stage(Runnable) - Method in class Concourse
-
Execute task within a new transaction.
- start() - Method in class EventingWatchService
-
- start() - Method in interface PathWatchService
-
Starts this service.
- start() - Method in class PollingWatchService
-
- StartState - Class in com.cinchapi.concourse.lang
-
- StartState(BuiltCriteria) - Constructor for class StartState
-
Construct a new instance.
- State - Class in com.cinchapi.concourse.lang
-
This is the base class and marker for any valid state in the
Criteria
builder.
- State(BuiltCriteria) - Constructor for class State
-
Construct a new instance.
- Strainer - Class in com.cinchapi.concourse.etl
-
A
Strainer is used to process a generic data set (e.g.
- Strainer(BiConsumer<String, Object>) - Constructor for class Strainer
-
Construct a new instance.
- StringBuilderWriter - Class in com.cinchapi.concourse.util
-
- StringBuilderWriter(StringBuilder) - Constructor for class StringBuilderWriter
-
Construct a new instance that writes to the specified
builder.
- StringBuilderWriter() - Constructor for class StringBuilderWriter
-
- stringToJava(String) - Static method in class Convert
-
Analyze value and convert it to the appropriate Java primitive or
Object.
- stringToOperator(String) - Static method in class Convert
-
Convert the symbol into the appropriate Operator.
- stringToResolvableLinkInstruction(String) - Static method in class Convert
-
- stringToResolvableLinkSpecification(String, String) - Static method in class Convert
-
Deprecated.
- sum(String) - Method in class Calculator
-
Return the sum of all the values stored across key.
- sum(String, Collection<Long>) - Method in class Calculator
-
This method assumes that all the values are numeric.
- sum(String, Collection<Long>, Timestamp) - Method in class Calculator
-
This method assumes that all the values are numeric.
- sum(String, Criteria) - Method in class Calculator
-
Return the sum of all the values for
key in
each of the records that match the
Criteria.
- sum(String, Criteria, Timestamp) - Method in class Calculator
-
Return the sum of all the values for
key in
each of the records that match the
Criteria.
- sum(String, long) - Method in class Calculator
-
Return the sum of all the values stored for key in
record.
- sum(String, long, Timestamp) - Method in class Calculator
-
This method assumes that all the values are numeric.
- sum(String, String) - Method in class Calculator
-
Return the sum of all the values for key in
each of the records that match the criteria.
- sum(String, String, Timestamp) - Method in class Calculator
-
Return the sum of all the values at timestamp for key in
each of the records that match the criteria.
- sum(String, Timestamp) - Method in class Calculator
-
Return the sum of all the values stored across key at
timestamp.
- symbols() - Method in class BuildableState
-
- symbols() - Method in class BuiltCriteria
-
- symbols() - Method in interface Criteria
-
Return the order list of symbols that make up this
Criteria.
- Table<V> - Interface in com.cinchapi.concourse.data
-
A
Table is a normalized data set in the form of a two-dimensional
mapping from record (
Long) and key (
String) to value.
- Tag - Class in com.cinchapi.concourse
-
A
Tag is a
String data type that does not get indexed for
full text search.
- take() - Method in class EventingWatchService
-
- take() - Method in class PollingWatchService
-
- tempDir(String) - Static method in class FileOps
-
Create a temporary directory with the specified prefix.
- tempFile() - Static method in class FileOps
-
Create a temporary file that is likely to be deleted some time after this
JVM terminates, but definitely not before.
- tempFile(String) - Static method in class FileOps
-
Create a temporary file that is likely to be deleted some time after this
JVM terminates, but definitely not before.
- tempFile(String, String) - Static method in class FileOps
-
Create a temporary file that is likely to be deleted some time after this
JVM terminates, but definitely not before.
- tempFile(String, String, String) - Static method in class FileOps
-
Create a temporary file that is likely to be deleted some time after this
JVM terminates, but definitely not before.
- then() - Method in class OrderAtState
-
- then() - Method in class OrderByState
-
- then() - Method in class OrderDirectionState
-
- thriftToJava() - Static method in class Conversions
-
Return a function to perform a conversion from a
TObject to a
java
Object.
- thriftToJava(TObject) - Static method in class Convert
-
Return the Java Object that represents object.
- thriftToJavaCasted() - Static method in class Conversions
-
Return a function to perform a casted conversion from TObject to
a java object of the parameterized type.
- time() - Method in class Concourse
-
Return a
Timestamp that represents the current instant according
to the server.
- time(long) - Method in class Concourse
-
Return a
Timestamp that corresponds to the specified number of
microseconds since the Unix epoch.
- time(Number) - Method in class Concourse
-
Return the
Timestamp that corresponds to the specified number of
microseconds since the Unix epoch.
- time(String) - Method in class Concourse
-
Return the
Timestamp, according to the server, that corresponds
to the instant described by the
phrase.
- time() - Method in class AtomicClock
-
Get the current timestamp (in microseconds), which is guaranteed to be
unique.
- Time - Class in com.cinchapi.concourse.time
-
Time utilities.
- Time() - Constructor for class Time
-
- timestamp() - Method in class OrderComponent
-
Return the order timestamp.
- Timestamp - Class in com.cinchapi.concourse
-
A wrapper class for a Unix timestamp with microsecond precision.
- Timestamps - Class in com.cinchapi.concourse.util
-
- Timestamps() - Constructor for class Timestamps
-
- TimestampState - Class in com.cinchapi.concourse.lang
-
The
State that expects the current token to be the last or the next
token to be a conjunction specification.
- TimestampState(BuiltCriteria) - Constructor for class TimestampState
-
Construct a new instance.
- timestampToMicros() - Static method in class Conversions
-
Return a function to perform a conversion from an
Timestamp to a
long value that represents the corresponding unix timestamp with
microsecond precision.
- tinySleep() - Static method in class Random
-
Pause execution for a random number of milliseconds between 100 and 200.
- TLists - Class in com.cinchapi.concourse.util
-
Utilities for Lists.
- to(long) - Static method in class Link
-
Return a Link that points to record.
- toArrayCasted(List<T>, Class<T>) - Static method in class TLists
-
Syntactic sugar for transforming a generic
List into an array
with the same generic type.
- toBigDecimal(Number) - Static method in class Numbers
-
Checks the instance type of input
Number and returns a
corresponding
BigDecimal.
- tObjectFactory() - Static method in class TypeAdapters
-
Return a TypeAdapterFactory that contains the preferred JSON
de/serialization rules for TObjects.
- tObjectFactory(boolean) - Static method in class TypeAdapters
-
Return a TypeAdapterFactory that contains the preferred JSON
de/serialization rules for TObjects.
- toByteArray(ByteBuffer) - Static method in class ByteBuffers
-
Return a byte array with the content of buffer.
- toCharBuffer(ByteBuffer) - Static method in class ByteBuffers
-
Return a UTF-8
CharBuffer representation of the bytes in the
buffer.
- toCharBuffer(ByteBuffer, Charset) - Static method in class ByteBuffers
-
Return a
CharBuffer representation of the bytes in the
buffer encoded with the
charset.
- toList(Collection<T>) - Static method in class Collections
-
Convert the given
collection to a
List, if necessary.
- toLongList(Collection<T>) - Static method in class Collections
-
Convert the given
collection to a
List of
Long
values, if necessary.
- toLongRepresentation(String) - Static method in class Versions
-
Convert a numerical version in decimal form (i.e.
- toLongRepresentation(String, int) - Static method in class Versions
-
Convert a numerical version in decimal form (i.e.
- toMultimap(Map<String, Object>) - Static method in class Transform
-
Convert the data to a Multimap.
- toRecord(Map<String, Object>) - Static method in class Transform
-
Convert the data to a Concourse style data record where each
value is a collection of one or more values.
- toString() - Method in class DataColumn
-
- toString() - Method in class DataIndex
-
- toString() - Method in class DataProjection
-
- toString() - Method in class DataRow
-
- toString() - Method in class DataTable
-
- toString() - Method in class BuildableState
-
- toString() - Method in class BuiltCriteria
-
- toString() - Method in class OrderComponent
-
- toString() - Method in class Link
-
- toString() - Method in class Tag
-
Return the String value that this Tag embeds.
- toString() - Method in class Timestamp
-
- toString() - Method in class Convert.ResolvableLink
-
- toString() - Method in class PrettyLinkedHashMap
-
- toString() - Method in class PrettyLinkedTableMap
-
- toString() - Method in class StringBuilderWriter
-
- toString() - Method in class Version
-
- touch(String) - Static method in class FileOps
-
Create an empty file or update the last updated timestamp on the same as
the unix command of the same name.
- toURL(String) - Static method in class FileOps
-
A shortcut for getting a
URL instance from a file path.
- toWhere(String) - Static method in class Link
-
Return a string that instructs Concourse to create links that point to
each of the records that match the ccl string.
- toWhere(Criteria) - Static method in class Link
-
Return a string that instructs Concourse to create links that point to
each of the records that match the ccl string.
- toWhere(Object) - Static method in class Link
-
Return a string that instructs Concourse to create links that point to
each of the records that match the ccl string.
- TransactionException - Exception in com.cinchapi.concourse
-
The base class for all exceptions that happen during (staged) operations in
a transaction.
- TransactionException() - Constructor for exception TransactionException
-
- transform(F) - Method in class DataColumn
-
Transform the value to the appropriate type.
- transform(F) - Method in class DataRow
-
Transform the value to the appropriate type.
- transform(F) - Method in class DataTable
-
Transform the value to the appropriate type.
- Transform - Class in com.cinchapi.concourse.etl
-
Static methods for common data processing functions.
- transformArray(F[], Function<? super F, ? extends V>, Class<V>) - Static method in class Transformers
-
Return an array whose content is equal to the content of original
after it has been transformed by function.
- Transformers - Class in com.cinchapi.concourse.util
-
A collection of tools used to transform objects in a collection using a
transformation
Function.
- Transformers() - Constructor for class Transformers
-
- Transformers.LazyTransformSet<V1,V2> - Class in com.cinchapi.concourse.util
-
A
Set that transform values from an original set of type
V1 into values of type
V2 on-the-fly using a
transformation
Function.
- transformMap(Map<K, V>, Function<? super K, ? extends K2>) - Static method in class Transformers
-
Return a Map whose keys are equal to the those in original after
it has been transformed by function.
- transformMapEntries(Map<K1, V1>, Function<K1, K2>, Function<V1, V2>) - Static method in class Transformers
-
Return a new
Map where the key and value of each entry is
transformed by the
keyFunction and
valueFunction
respectively.
- transformMapSet(Map<K, Set<V>>, Function<? super K, ? extends K2>, Function<? super V, ? extends V2>) - Static method in class Transformers
-
Transform the keys in original with the keys function
and each of the values with the values function and return the
result.
- transformMapValues(Map<K, V>, Function<V, V2>) - Static method in class Transformers
-
Transform each of the values in the original with the
function.
- transformSet(Set<F>, Function<? super F, ? extends V>) - Static method in class Transformers
-
Populate a
Set with the items in
original after applying
function.
- transformSetLazily(Set<V1>, Function<V1, V2>) - Static method in class Transformers
-
Return a
Set that lazily populates a new set with items from the
original after applying the transformation
function.
- transformTreeMapSet(Map<K, Set<V>>, Function<? super K, ? extends K2>, Function<? super V, ? extends V2>, Comparator<K2>) - Static method in class Transformers
-
Transform the keys in original with the keys function
and each of the values with the values function and return the
map result that is sorted according to the sorter.
- translateFromThriftCriteria(TCriteria) - Static method in class Language
-
Translate the tcriteria to its Java analog.
- translateFromThriftSymbol(TSymbol) - Static method in class Language
-
Translate the TSymbol to its Java analog.
- translateToThriftCriteria(Criteria) - Static method in class Language
-
Translate the criteria to its Thrift analog.
- translateToThriftSymbol(Symbol) - Static method in class Language
-
Translate symbol to its Thrift analog.
- TSets - Class in com.cinchapi.concourse.util
-
Utilities for
Set objects.
- TSets() - Constructor for class TSets
-
- TypeAdapters - Class in com.cinchapi.concourse.util
-
A collection of TypeAdapter factories to use when converting java
objects to their appropriate JSON representation.
- TypeAdapters() - Constructor for class TypeAdapters
-