changeset 865:c196531f300c

Add missing javadoc comment
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 01 Feb 2024 17:47:10 +0100 (14 months ago)
parents b80758ef25db
children 6d229896c785
files src/main/java/org/monetdb/mcl/io/LineType.java
diffstat 1 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/main/java/org/monetdb/mcl/io/LineType.java
+++ b/src/main/java/org/monetdb/mcl/io/LineType.java
@@ -90,6 +90,13 @@ public enum LineType {
 		return UNKNOWN;
 	}
 
+	/**
+	 * utility method to decide the LineType
+	 *
+	 * @param ch0 the first byte as int
+	 * @param ch1 the second byte as int
+	 * @return LineType the type of line
+	 */
 	private static final LineType classify(int ch0, int ch1) {
 		switch (ch0) {
 			case '!':