This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Custom Object with the following fields: | |
* Apex_Class_Name__c - Text(255) | |
* Params__c - Long Text Area(131072) | |
* Status__c - Picklist (New, Enqueued, Error) | |
* Async_Apex_Job_Id__c - Text(18) (Unique Case Insensitive) | |
* Error_Message__c - Long Text Area(32768) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.company; | |
import com.sun.deploy.util.StringUtils; | |
import java.io.*; | |
import java.util.*; | |
public class QifToBeancount { | |
public static String convert(String qif) { | |
List<Transaction> transactions = new ArrayList<>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.tshevchuk; | |
class Exception1 extends Exception { | |
} | |
class Exception2 extends Exception { | |
} | |
public class MYE { |