All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.inject.internal.util.CallerFinder Maven / Gradle / Ivy

The newest version!
package com.google.inject.internal.util;

import java.util.function.Predicate;

/**
 * An interface around finding the caller of the stack trace, so we can have different strategies
 * for implementing it.
 */
interface CallerFinder {
  StackTraceElement findCaller(Predicate shouldBeSkipped);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy