| Operation |
Public
main (args: String[],
) : void
|
Details:
[ Is static True. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
|
Public
normaliseString (input: String,
) : String
|
Details:
|
Notes:
|
remove 0 when strings start with 0<br/>
|
[ Is static True. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
|
Public
checkGatDepartment (stringSet: Set<String>,
inputString: String,
) : boolean
|
Details:
|
Notes:
|
Checks if a Set of Strings contains a given input string, ignoring a potential leading "0". <br/>@return true if the input string (with or without a leading "0") is present in the set, false otherwise.<br/>
|
[ Is static True. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
|
Public
changeDelimiter (inputFilePath: String,
outputFilePath: String,
oldDelimiter: char,
newDelimiter: char,
) : void
|
Details:
[ Is static True. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
|
Public
mapDepartmentNameAndCode (inputFilePath: String,
) : Map<String, String>
|
Details:
|
Notes:
|
Creates a mapping between department name (key) and department code (value)<br/>@return<br/>
|
[ Is static True. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
|
Public
convertDoubleArrayToCSVString (array: double[],
) : String
|
Details:
[ Is static True. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
|
Public
convertIntegerListToCSVString (list: List<Integer>,
) : String
|
Details:
[ Is static True. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
|
Public
oneByOne (reader: Reader,
) : List<String[]>
|
Details:
[ Is static True. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
|