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
| import com.beiyanght.masterdata.common.exception.DataNotFoundException; | |
| /** | |
| * helpers for String | |
| * | |
| * @author keating_andy_given | |
| */ | |
| public class StringHelp { | |
| private enum Flag{ |
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
| import static com.beiyanght.jpa.ThreadLocalEntityManager.em; | |
| import java.math.BigDecimal; | |
| /** | |
| * | |
| * @author keating_andy_given | |
| */ | |
| public class SequenceHelp { | |
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
| import java.io.BufferedReader; | |
| import java.io.File; | |
| import java.io.FileInputStream; | |
| import java.io.FileOutputStream; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.io.OutputStreamWriter; | |
| /** | |
| * some helpers for file operation |
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
| import java.text.DateFormat; | |
| import java.text.ParseException; | |
| import java.text.SimpleDateFormat; | |
| import java.util.Date; | |
| /** | |
| * some helpers for java.util.Date | |
| * @author keating_andy_given | |
| * | |
| */ |
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
| import javax.swing.JDialog; | |
| import javax.swing.JFrame; | |
| import javax.swing.JTable; | |
| import javax.swing.UIManager; | |
| import javax.swing.UnsupportedLookAndFeelException; | |
| import javax.swing.table.TableColumnModel; | |
| /** | |
| * Swing helper for column of JTable | |
| * @author keating_andy_given |
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
| import java.util.ArrayList; | |
| import java.util.List; | |
| import com.beiyanght.utils.dto.DtoException; | |
| import com.beiyanght.utils.dto.DtoHelper; | |
| /** | |
| * | |
| * @author keating_andy_given | |
| */ |
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
| import java.util.HashMap; | |
| import java.util.Map; | |
| /** | |
| * bidirectional hashMap | |
| * 双向的HashMap对应关系 | |
| * | |
| * @author keating_andy_given | |
| */ |
NewerOlder