This file contains 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
/** | |
* Created by Ilya Gazman on 6/29/2017. | |
*/ | |
public class NumberTester { | |
public static final String MIN_VALUE_32 = Integer.MIN_VALUE + ""; | |
public static final String MAX_VALUE_32 = Integer.MAX_VALUE + ""; | |
public static final String MIN_VALUE_64 = Long.MIN_VALUE + ""; | |
public static final String MAX_VALUE_64 = Long.MAX_VALUE + ""; |
This file contains 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
public class HtmlBuilder { | |
public static final String COLOR = "[color]"; | |
public enum Type{ | |
BOLD("strong"), | |
ITALIC("em"), | |
COLOR("font color=\"#"+ HtmlBuilder.COLOR + "\""), | |
SMALL("small") | |
; | |
public final String stringType; |