Skip to content

Commit 4caa9b3

Browse files
committed
Format code
1 parent c08db34 commit 4caa9b3

17 files changed

+32
-30
lines changed

baremaps-data/src/main/java/org/apache/baremaps/data/type/BooleanDataType.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323

2424
import java.nio.ByteBuffer;
2525

26-
/**
27-
* A {@link DataType} for reading and writing boolean values in {@link ByteBuffer}s.
26+
/**
27+
* A {@link DataType} for reading and writing boolean values in {@link ByteBuffer}s.
2828
*/
2929
public class BooleanDataType extends MemoryAlignedDataType<Boolean> {
3030

31-
/**
31+
/**
3232
* Constructs a {@link BooleanDataType} with a fixed size of {@link Byte#BYTES}.
3333
*/
3434
public BooleanDataType() {

baremaps-data/src/main/java/org/apache/baremaps/data/type/BooleanListDataType.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
import java.util.ArrayList;
2424
import java.util.List;
2525

26-
/**
27-
* A {@link DataType} for reading and writing lists of boolean values in {@link ByteBuffer}s.
26+
/**
27+
* A {@link DataType} for reading and writing lists of boolean values in {@link ByteBuffer}s.
2828
*/
2929
public class BooleanListDataType implements DataType<List<Boolean>> {
3030

baremaps-data/src/main/java/org/apache/baremaps/data/type/ByteDataType.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919

2020
import java.nio.ByteBuffer;
2121

22-
/**
23-
* A {@link DataType} for reading and writing byte values in {@link ByteBuffer}s.
22+
/**
23+
* A {@link DataType} for reading and writing byte values in {@link ByteBuffer}s.
2424
*/
2525
public class ByteDataType extends MemoryAlignedDataType<Byte> {
2626

27-
/**
27+
/**
2828
* Constructs a {@link ByteDataType} with a fixed size of {@link Byte#BYTES}.
2929
*/
3030
public ByteDataType() {

baremaps-data/src/main/java/org/apache/baremaps/data/type/CoordinateArrayDataType.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
import org.locationtech.jts.geom.Coordinate;
2222

2323
/**
24-
* A {@link DataType} for reading and writing arrays of {@link Coordinate} values in {@link ByteBuffer}s.
24+
* A {@link DataType} for reading and writing arrays of {@link Coordinate} values in
25+
* {@link ByteBuffer}s.
2526
*/
2627
public class CoordinateArrayDataType implements DataType<Coordinate[]> {
2728

baremaps-data/src/main/java/org/apache/baremaps/data/type/CoordinateDataType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/** A {@link DataType} for reading and writing {@link Coordinate} values in {@link ByteBuffer}s. */
2626
public class CoordinateDataType extends MemoryAlignedDataType<Coordinate> {
2727

28-
/**
28+
/**
2929
* Constructs a {@link CoordinateDataType} with a fixed size of two {@link Double#BYTES}.
3030
*/
3131
public CoordinateDataType() {

baremaps-data/src/main/java/org/apache/baremaps/data/type/DoubleDataType.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919

2020
import java.nio.ByteBuffer;
2121

22-
/**
23-
* A {@link DataType} for reading and writing double values in {@link ByteBuffer}s.
22+
/**
23+
* A {@link DataType} for reading and writing double values in {@link ByteBuffer}s.
2424
*/
2525
public class DoubleDataType extends MemoryAlignedDataType<Double> {
2626

27-
/**
27+
/**
2828
* Constructs a {@link DoubleDataType} with a fixed size of {@link Double#BYTES}.
2929
*/
3030
public DoubleDataType() {

baremaps-data/src/main/java/org/apache/baremaps/data/type/FloatDataType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*/
2727
public class FloatDataType extends MemoryAlignedDataType<Float> {
2828

29-
/**
29+
/**
3030
* Constructs a {@link FloatDataType} with a fixed size of {@link Float#BYTES}.
3131
*/
3232
public FloatDataType() {

baremaps-data/src/main/java/org/apache/baremaps/data/type/GeometryCollectionDataType.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
import org.locationtech.jts.geom.GeometryFactory;
2525

2626
/**
27-
* A {@link DataType} for reading and writing {@link GeometryCollection} objects in {@link ByteBuffer}s.
27+
* A {@link DataType} for reading and writing {@link GeometryCollection} objects in
28+
* {@link ByteBuffer}s.
2829
*/
2930
public class GeometryCollectionDataType implements DataType<GeometryCollection> {
3031

baremaps-data/src/main/java/org/apache/baremaps/data/type/IntegerDataType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*/
2727
public class IntegerDataType extends MemoryAlignedDataType<Integer> {
2828

29-
/**
29+
/**
3030
* Constructs an {@link IntegerDataType} with a fixed size of {@link Integer#BYTES}.
3131
*/
3232
public IntegerDataType() {

baremaps-data/src/main/java/org/apache/baremaps/data/type/LonLatDataType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class LonLatDataType extends MemoryAlignedDataType<Coordinate> {
3232
private static final long SHIFT = 32;
3333
private static final long MASK = (1L << 32) - 1L;
3434

35-
/**
35+
/**
3636
* Constructs a {@link LonLatDataType} with a fixed size of {@link Long#BYTES}.
3737
*/
3838
public LonLatDataType() {

0 commit comments

Comments
 (0)