Skip to content

Commit 012492a

Browse files
committed
Most likely finished refactoring parser to align with CSV Schema 1.0 EBNF
1 parent 9e6c0cd commit 012492a

File tree

6 files changed

+354
-157
lines changed

6 files changed

+354
-157
lines changed

csv-validator-core/src/main/scala/uk/gov/nationalarchives/csv/validator/schema/Schema.scala

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,15 @@ case class Optional() extends ColumnDirective {
7171
override def toString = "optional"
7272
}
7373

74+
case class MatchIsFalse() extends ColumnDirective {
75+
override def toString = "matchIsFalse"
76+
}
77+
7478
case class Warning() extends ColumnDirective {
7579
override def toString = "warning"
7680
}
7781

7882
case class IgnoreCase() extends ColumnDirective {
7983
override def toString = "ignoreCase"
80-
}
84+
}
85+

0 commit comments

Comments
 (0)