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

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

There is a newer version: 3.0.0-alpha-3
Show 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