Uses of Class
com.influxdb.v3.client.Point
-
Uses of Point in com.influxdb.v3.client
Modifier and TypeMethodDescriptionPointValues.asPoint()
Creates new Point with this as values.Creates new Point with this as values with given measurement.Point.copy()
Creates a copy of this object.static Point
Point.fromValues
(PointValues values) Create a new Point with given values.static Point
Point.measurement
(String measurementName) Create a new Point withe specified a measurement name.Point.removeField
(@NonNull String name) Removes a field with the specified name if it exists; otherwise, it does nothing.Removes a tag with the specified name if it exists; otherwise, it does nothing.Point.setBooleanField
(String name, boolean value) Adds or replaces a boolean field.AddBoolean
field.AddDouble
field.AddLong
field.AddNumber
field.AddObject
field.AddString
field.Adds or replaces fields for this point.Point.setFloatField
(String name, double value) Adds or replaces a float field.Point.setIntegerField
(String name, long value) Adds or replaces a integer field.Point.setMeasurement
(String measurement) Updates the measurement for the point.Point.setStringField
(String name, String value) Adds or replaces a string field.Adds or replaces a tag value for this point.Adds or replaces tags for this point.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.setTimestamp
(Instant time) Updates the timestamp for the point.Modifier and TypeMethodDescriptionvoid
InfluxDBClient.writePoint
(Point point) Write aPoint
to the InfluxDB server.void
InfluxDBClient.writePoint
(Point point, WriteOptions options) Write aPoint
to the InfluxDB server.Modifier and TypeMethodDescriptionvoid
InfluxDBClient.writePoints
(List<Point> points) Write a list ofPoint
to the InfluxDB server.void
InfluxDBClient.writePoints
(List<Point> points, WriteOptions options) Write a list ofPoint
to the InfluxDB server. -
Uses of Point in com.influxdb.v3.client.internal
Modifier and TypeMethodDescriptionvoid
InfluxDBClientImpl.writePoint
(Point point) void
InfluxDBClientImpl.writePoint
(Point point, WriteOptions options) Modifier and TypeMethodDescriptionvoid
InfluxDBClientImpl.writePoints
(List<Point> points) void
InfluxDBClientImpl.writePoints
(List<Point> points, WriteOptions options)