mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-01 10:20:51 +00:00
19 lines
554 B
Java
19 lines
554 B
Java
class ValLambda {
|
|
ValLambda() {
|
|
super();
|
|
}
|
|
public void easyLambda() {
|
|
final @lombok.val java.lang.Runnable foo = (Runnable) () -> {
|
|
};
|
|
}
|
|
public void easyIntersectionLambda() {
|
|
final @lombok.val java.lang.Object foo = (Runnable & java.io.Serializable) () -> {
|
|
};
|
|
final @lombok.val java.lang.Object bar = (java.io.Serializable & Runnable) () -> {
|
|
};
|
|
}
|
|
public void easyLubLambda() {
|
|
final @lombok.val java.lang.Runnable foo = ((System.currentTimeMillis() > 0) ? (Runnable) () -> {
|
|
} : (Runnable) System.out::println);
|
|
}
|
|
} |