Searched refs:emptyAction (Results 1 - 5 of 5) sorted by relevance

/openjdk9/jdk/src/java.base/share/classes/java/util/
H A DOptionalLong.java164 * @param emptyAction the empty-based action to be performed, if no value is
171 public void ifPresentOrElse(LongConsumer action, Runnable emptyAction) { argument
175 emptyAction.run();
H A DOptionalInt.java164 * @param emptyAction the empty-based action to be performed, if no value is
171 public void ifPresentOrElse(IntConsumer action, Runnable emptyAction) { argument
175 emptyAction.run();
H A DOptionalDouble.java164 * @param emptyAction the empty-based action to be performed, if no value is
171 public void ifPresentOrElse(DoubleConsumer action, Runnable emptyAction) { argument
175 emptyAction.run();
H A DOptional.java184 * @param emptyAction the empty-based action to be performed, if no value is
191 public void ifPresentOrElse(Consumer<? super T> action, Runnable emptyAction) { argument
195 emptyAction.run();
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orbutil/fsm/
H A DStateEngineImpl.java57 private static Action emptyAction = new ActionBase( "Empty" ) field in class:StateEngineImpl
122 return setDefault( oldState, emptyAction, newState ) ;

Completed in 117 milliseconds