com.g2forge.alexandria.analysis.ISerializablePredicate2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-analysis Show documentation
Show all versions of ax-analysis Show documentation
Java reflection and bytecode analysis toolkit, usable for all kinds of introspection and analysis of running code.
package com.g2forge.alexandria.analysis;
import com.g2forge.alexandria.java.function.IPredicate2;
public interface ISerializablePredicate2 extends IPredicate2, SerializableLambda, ISerializablePredicate {
public static IMethodAnalyzer analyze(ISerializablePredicate2 lambda) {
return new MethodAnalyzer(lambda);
}
public static ISerializablePredicate2 create(ISerializablePredicate2 consumer) {
return consumer;
}
}