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

gw.lang.function.Function2 Maven / Gradle / Ivy

There is a newer version: 1.18.2
Show newest version
/*
 * Copyright 2014 Guidewire Software, Inc.
 */

package gw.lang.function;

public abstract class Function2 extends AbstractBlock implements IFunction2 {

  public Object invokeWithArgs(Object[] args) {
    if(args.length != 2) {
      throw new IllegalArgumentException("You must pass 2 args to this block, but you passed " + args.length);
    } else {
      //noinspection unchecked
      return invoke(args[0], args[1]);
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy