Skip to content

Instantly share code, notes, and snippets.

View kaansonmezoz's full-sized avatar

Kaan Sonmezoz kaansonmezoz

View GitHub Profile
@kaansonmezoz
kaansonmezoz / FileOperations.java
Created December 19, 2019 21:36
Factory Pattern ~ A Modern Approach - 2
public class FileOperations {
// some code here
public String readFile(String filePath){
if(isPdfFile(filePath)){
return readPdfFile(filepath);
}
else if(isExcelFile(filePath)) {
return readExcelFile(filePath);
@kaansonmezoz
kaansonmezoz / FileOperations.java
Created December 19, 2019 21:35
Factor Pattern ~ A Modern Approach
public class FileOperations {
// some code here
public String readPdfFile(String filePath) {
// some code here
return fileContent
}
}