Uses of Class
com.google.errorprone.annotations.ForOverride
-
Packages that use ForOverride Package Description com.google.common.base Basic utility libraries and interfaces.com.google.common.util.concurrent Concurrency utilities. -
-
Uses of ForOverride in com.google.common.base
Methods in com.google.common.base with annotations of type ForOverride Modifier and Type Method Description protected abstract A
Converter. doBackward(B b)
Returns a representation ofb
as an instance of typeA
.protected abstract boolean
Equivalence. doEquivalent(T a, T b)
Implemented by the user to determine whethera
andb
are considered equivalent, subject to the requirements specified inEquivalence.equivalent(T, T)
.protected abstract B
Converter. doForward(A a)
Returns a representation ofa
as an instance of typeB
.protected abstract int
Equivalence. doHash(T t)
Implemented by the user to return a hash code fort
, subject to the requirements specified inEquivalence.hash(T)
. -
Uses of ForOverride in com.google.common.util.concurrent
Methods in com.google.common.util.concurrent with annotations of type ForOverride Modifier and Type Method Description protected void
AbstractFuture. afterDone()
Callback method that is called exactly once after the future is completed.protected void
AbstractService. doCancelStart()
This method is called byAbstractService.stopAsync()
when the service is still starting (i.e.protected abstract void
AbstractService. doStart()
This method is called byAbstractService.startAsync()
to initiate service startup.protected abstract void
AbstractService. doStop()
This method should be used to initiate service shutdown.
-