Skip navigation links
B C D E F G I L M N P R S T U V W 

B

booleanField(String) - Method in class com.zaxxer.influx4j.Point
Get the value of the specified boolean field as an auto-boxed Boolean.
build() - Method in class com.zaxxer.influx4j.InfluxDB.Builder
 
build() - Method in class com.zaxxer.influx4j.PointFactory.Builder
 
builder() - Static method in class com.zaxxer.influx4j.InfluxDB
Get an instance of an InfluxDB InfluxDB.Builder.
builder() - Static method in class com.zaxxer.influx4j.PointFactory
Obtain a new PointFactory.Builder instance to configure and create a PointFactory.

C

close() - Method in class com.zaxxer.influx4j.InfluxDB
Close the connection to the database.
close() - Method in class com.zaxxer.influx4j.Point
This method is used in conjunction with the Point.retain() method to return a Point back to the pool of points maintained by the PointFactory.
com.zaxxer.influx4j - package com.zaxxer.influx4j
 
com.zaxxer.influx4j.util - package com.zaxxer.influx4j.util
 
compare(int, int) - Method in interface com.zaxxer.influx4j.util.PrimitiveArraySort.IntComparator
 
containsUnicode(String) - Static method in class com.zaxxer.influx4j.util.Utf8
 
copy() - Method in class com.zaxxer.influx4j.Point
Create a copy of this Point, including its measurement name, tags, and timestamp, but excluding any fields.
copy(String) - Method in class com.zaxxer.influx4j.Point
Create a copy of this Point, including its tags and timestamp, but excluding any fields and using the measurement name specified here.
create() - Method in class com.zaxxer.influx4j.InfluxDB.Builder
 
createDatabase(String) - Method in class com.zaxxer.influx4j.InfluxDB
 
createPoint(String) - Method in class com.zaxxer.influx4j.PointFactory
Create a Point with the specified measurement name.

D

DaemonThreadFactory - Class in com.zaxxer.influx4j.util
 
DaemonThreadFactory(String) - Constructor for class com.zaxxer.influx4j.util.DaemonThreadFactory
 
dequeue() - Method in class com.zaxxer.influx4j.util.FAAArrayQueue
Progress condition: lock-free
doubleField(String) - Method in class com.zaxxer.influx4j.Point
Get the value of the specified floating point double field as an auto-boxed Double.

E

encodedLength(CharSequence) - Static method in class com.zaxxer.influx4j.util.Utf8
Returns the number of bytes in the UTF-8-encoded form of sequence.
enqueue(E) - Method in class com.zaxxer.influx4j.util.FAAArrayQueue
Progress Condition: Lock-Free

F

FAAArrayQueue<E> - Class in com.zaxxer.influx4j.util
Fetch-And-Add Array Queue
FAAArrayQueue() - Constructor for class com.zaxxer.influx4j.util.FAAArrayQueue
 
FastValue2Buffer - Class in com.zaxxer.influx4j.util
 
field(String, String) - Method in class com.zaxxer.influx4j.Point
Add a string field to the Point with the specified value.
field(String, long) - Method in class com.zaxxer.influx4j.Point
Add a long integer field to the Point with the specified value.
field(String, double) - Method in class com.zaxxer.influx4j.Point
Add a floating point double field to the Point with the specified value.
field(String, boolean) - Method in class com.zaxxer.influx4j.Point
Add a boolean field to the Point with the specified value.
flush() - Method in class com.zaxxer.influx4j.PointFactory
Flush all Point instances from the internal pool.

G

getTimestamp() - Method in class com.zaxxer.influx4j.Point
Get the timestamp of this Point in milliseconds.

I

InfluxDB - Class in com.zaxxer.influx4j
 
InfluxDB.Builder - Class in com.zaxxer.influx4j
Builder for an InfluxDB instance.
InfluxDB.Consistency - Enum in com.zaxxer.influx4j
InfluxDB data consistency.
InfluxDB.Precision - Enum in com.zaxxer.influx4j
InfluxDB timestamp precision.
InfluxDB.Protocol - Enum in com.zaxxer.influx4j
InfluxDB wire protocols.
initialSize(int) - Method in class com.zaxxer.influx4j.PointFactory.Builder
Sets the initial size of the internal Point pool.

L

longField(String) - Method in class com.zaxxer.influx4j.Point
Get the value of the specified long integer field as an auto-boxed Long.

M

MAXIMUM_SERIALIZED_POINT_SIZE - Static variable in class com.zaxxer.influx4j.InfluxDB
 
maximumSize(int) - Method in class com.zaxxer.influx4j.PointFactory.Builder
Sets the maximum size of the internal Point pool.
measurement(String) - Method in class com.zaxxer.influx4j.Point
Set the measurement name of this Point.
measurement() - Method in class com.zaxxer.influx4j.Point
Get the measurement name of this Point.

N

newThread(Runnable) - Method in class com.zaxxer.influx4j.util.DaemonThreadFactory
 

P

Point - Class in com.zaxxer.influx4j
An instance of this class represents a single measurement and associated tags, fields, and timestamp to be persisted in InfluxDB via the InfluxDB.write(Point) method.
PointFactory - Class in com.zaxxer.influx4j
This class provides the source of Point instances to be persisted by calling InfluxDB.write(Point).
PointFactory.Builder - Class in com.zaxxer.influx4j
Builder for a PointFactory instance.
PrimitiveArraySort - Class in com.zaxxer.influx4j.util
 
PrimitiveArraySort() - Constructor for class com.zaxxer.influx4j.util.PrimitiveArraySort
 
PrimitiveArraySort.IntComparator - Interface in com.zaxxer.influx4j.util
 

R

retain() - Method in class com.zaxxer.influx4j.Point
Calling this method will prevent the Point from returning to the pool of points maintained by the PointFactory until the Point.close() method is called.

S

setAutoFlushPeriod(long) - Method in class com.zaxxer.influx4j.InfluxDB.Builder
 
setConnection(String, int, InfluxDB.Protocol) - Method in class com.zaxxer.influx4j.InfluxDB.Builder
 
setConsistency(InfluxDB.Consistency) - Method in class com.zaxxer.influx4j.InfluxDB.Builder
 
setDatabase(String) - Method in class com.zaxxer.influx4j.InfluxDB.Builder
 
setPassword(String) - Method in class com.zaxxer.influx4j.InfluxDB.Builder
 
setPrecision(InfluxDB.Precision) - Method in class com.zaxxer.influx4j.InfluxDB.Builder
 
setRetentionPolicy(String) - Method in class com.zaxxer.influx4j.InfluxDB.Builder
 
setThreadFactory(ThreadFactory) - Method in class com.zaxxer.influx4j.InfluxDB.Builder
 
setUsername(String) - Method in class com.zaxxer.influx4j.InfluxDB.Builder
 
size() - Method in class com.zaxxer.influx4j.util.FAAArrayQueue
Get the current size of the queue.
sort(int[], int, PrimitiveArraySort.IntComparator) - Static method in class com.zaxxer.influx4j.util.PrimitiveArraySort
 
stringField(String) - Method in class com.zaxxer.influx4j.Point
Get the value of the specified string field.

T

tag(String, String) - Method in class com.zaxxer.influx4j.Point
Tag the Point with the specified string value.
tag(String) - Method in class com.zaxxer.influx4j.Point
Get the value of the specified tag.
timestamp() - Method in class com.zaxxer.influx4j.Point
Timestamp the Point with the millisecond resolution time value returned by System.currentTimeMillis().
timestamp(long, TimeUnit) - Method in class com.zaxxer.influx4j.Point
Timestamp the Point with the specified time value and TimeUnit resolution.
toString() - Method in enum com.zaxxer.influx4j.InfluxDB.Consistency
 
toString() - Method in enum com.zaxxer.influx4j.InfluxDB.Precision
 
toString() - Method in enum com.zaxxer.influx4j.InfluxDB.Protocol
 
toString() - Method in class com.zaxxer.influx4j.Point

U

Utf8 - Class in com.zaxxer.influx4j.util
 
Utf8() - Constructor for class com.zaxxer.influx4j.util.Utf8
 

V

valueOf(String) - Static method in enum com.zaxxer.influx4j.InfluxDB.Consistency
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.zaxxer.influx4j.InfluxDB.Precision
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.zaxxer.influx4j.InfluxDB.Protocol
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.zaxxer.influx4j.InfluxDB.Consistency
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.zaxxer.influx4j.InfluxDB.Precision
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.zaxxer.influx4j.InfluxDB.Protocol
Returns an array containing the constants of this enum type, in the order they are declared.

W

write(Point) - Method in class com.zaxxer.influx4j.InfluxDB
Write a Point to the database.
writeDoubleToBuffer(double, ByteBuffer) - Static method in class com.zaxxer.influx4j.util.FastValue2Buffer
 
writeLongToBuffer(long, ByteBuffer) - Static method in class com.zaxxer.influx4j.util.FastValue2Buffer
 
B C D E F G I L M N P R S T U V W 
Skip navigation links

Copyright © 2018 Brett Wooldridge. All rights reserved.