Uses of Enum Class
com.influxdb.v3.client.write.WritePrecision
Packages that use WritePrecision
Package
Description
-
Uses of WritePrecision in com.influxdb.v3.client.config
Methods in com.influxdb.v3.client.config that return WritePrecisionModifier and TypeMethodDescriptionInfluxDBClientConfigs.getWritePrecision()
Gets the default precision to use for the timestamp of points.Methods in com.influxdb.v3.client.config with parameters of type WritePrecisionModifier and TypeMethodDescriptionInfluxDBClientConfigs.Builder.writePrecision
(WritePrecision writePrecision) Sets the default precision to use for the timestamp of points if no precision is specified in the write API call. -
Uses of WritePrecision in com.influxdb.v3.client.internal
Methods in com.influxdb.v3.client.internal with parameters of type WritePrecisionModifier and TypeMethodDescriptionstatic BigInteger
NanosecondConverter.convert
(Instant instant, WritePrecision precision) ConvertInstant
timestamp to a given precision.static BigInteger
NanosecondConverter.convertToNanos
(Number timestamp, WritePrecision precision) Convert timestamp in a given precision to nanoseconds. -
Uses of WritePrecision in com.influxdb.v3.client.write
Fields in com.influxdb.v3.client.write declared as WritePrecisionModifier and TypeFieldDescriptionstatic final WritePrecision
WriteParameters.DEFAULT_WRITE_PRECISION
Default WritePrecision.Methods in com.influxdb.v3.client.write that return WritePrecisionModifier and TypeMethodDescriptionWriteParameters.precisionSafe
(InfluxDBClientConfigs configs) static WritePrecision
Returns the enum constant of this class with the specified name.static WritePrecision[]
WritePrecision.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.influxdb.v3.client.write with parameters of type WritePrecisionModifier and TypeMethodDescriptionWriteParameters.copy
(WritePrecision precision, InfluxDBClientConfigs configs) Copy current parameters with new precision.Point.setTimestamp
(Long time, WritePrecision precision) Updates the timestamp for the point.Point.setTimestamp
(Number time, WritePrecision precision) Updates the timestamp for the point.Point.toLineProtocol
(WritePrecision precision) Transform to Line Protocol.Constructors in com.influxdb.v3.client.write with parameters of type WritePrecisionModifierConstructorDescriptionWriteParameters
(String database, String organization, WritePrecision precision) Construct WriteAPI parameters.