Skip to content

Instantly share code, notes, and snippets.

@kiris
Created July 14, 2012 07:42
Show Gist options
  • Save kiris/3109900 to your computer and use it in GitHub Desktop.
Save kiris/3109900 to your computer and use it in GitHub Desktop.
lombok @ExtensionMethod sample3.
import lombok.experimental.ExtensionMethod;
@ExtensionMethod({ Extensions1.class, Extensions2.class })
public class Main {
public static void main(String[] args) {
System.out.println("test".addedMethod()); // => test added method 2
}
}
class Extensions1 {
public static String addedMethod(int value) {
return value + " added method 1";
}
}
class Extensions2 {
public static String addedMethod(String value) {
return value + " added method 2";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment