├── .gitignore ├── README.md ├── project ├── build.properties └── plugins.sbt └── src ├── main └── scala │ └── com │ └── ing │ └── wbaa │ └── spark │ └── udf │ └── ValidateIBAN.scala └── test └── scala └── com └── ing └── wbaa └── spark └── udf └── ValidateIBANSpec.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuller87/spark-udf/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuller87/spark-udf/HEAD/README.md -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuller87/spark-udf/HEAD/project/build.properties -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuller87/spark-udf/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /src/main/scala/com/ing/wbaa/spark/udf/ValidateIBAN.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuller87/spark-udf/HEAD/src/main/scala/com/ing/wbaa/spark/udf/ValidateIBAN.scala -------------------------------------------------------------------------------- /src/test/scala/com/ing/wbaa/spark/udf/ValidateIBANSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuller87/spark-udf/HEAD/src/test/scala/com/ing/wbaa/spark/udf/ValidateIBANSpec.scala --------------------------------------------------------------------------------