MCPcopy Create free account
hub / github.com/SquirrelJME/SquirrelJME / Consumer

Interface Consumer

NewBootstrap.java:1247–1259  ·  view source on GitHub ↗

Consumes a value which may throw an exception. @param The value to consume. @param A secondary value that may be passed. @param The exception to potentially throw. @since 2016/10/27

Source from the content-addressed store, hash-verified

1245 * @since 2016/10/27
1246 */
1247 public static interface Consumer<V, S, E extends Exception>
1248 {
1249 /**
1250 * Accepts a value.
1251 *
1252 * @param __v The value to access.
1253 * @param __s An optional secondary value.
1254 * @throws E If this given exception type is thrown.
1255 * @since 2016/10/27
1256 */
1257 public abstract void accept(V __v, S __s)
1258 throws E;
1259 }
1260 /**
1261 * This represents the alphabet that is used for Base64.
1262 *

Callers 1

__walkMethod · 0.65

Implementers 2

NewBootstrapNewBootstrap.java
BuildProjectNewBootstrap.java

Calls

no outgoing calls

Tested by

no test coverage detected