You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ApiDescriptor.java 175B

1234567891011
  1. package p;
  2. public enum ApiDescriptor {
  3. TARGET_CLASS_TARGET_METHOD(999);
  4. ApiDescriptor(int number) {
  5. this.number = number;
  6. }
  7. public final int number;
  8. }