Skip to content

Instantly share code, notes, and snippets.

@hyunsik
Created October 5, 2015 13:19
Show Gist options
  • Save hyunsik/afa9ec5cbeaed9a9d6cc to your computer and use it in GitHub Desktop.
Save hyunsik/afa9ec5cbeaed9a9d6cc to your computer and use it in GitHub Desktop.
Builder Pattern Example
let storage = StorageBuilder.newBuilder()
.setURL("file:///tmp/test.csv")
.setType("csv")
.setFieldDelimiter(",")
.setLineDelimiter("\n")
.setEncoding("UTF-8")
.build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment