equal
deleted
inserted
replaced
37 * If you write code that depends on this, you do so at your own risk. |
37 * If you write code that depends on this, you do so at your own risk. |
38 * This code and its internal interfaces are subject to change or |
38 * This code and its internal interfaces are subject to change or |
39 * deletion without notice.</b> |
39 * deletion without notice.</b> |
40 */ |
40 */ |
41 public enum Profile { |
41 public enum Profile { |
42 COMPACT1("compact1", 1, Target.JDK1_8), |
42 COMPACT1("compact1", 1, Target.JDK1_8, Target.JDK1_9), |
43 COMPACT2("compact2", 2, Target.JDK1_8), |
43 COMPACT2("compact2", 2, Target.JDK1_8, Target.JDK1_9), |
44 COMPACT3("compact3", 3, Target.JDK1_8), |
44 COMPACT3("compact3", 3, Target.JDK1_8, Target.JDK1_9), |
45 |
45 |
46 DEFAULT { |
46 DEFAULT { |
47 @Override |
47 @Override |
48 public boolean isValid(Target t) { |
48 public boolean isValid(Target t) { |
49 return true; |
49 return true; |