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
| 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 | * |