![JAR search and dependency download from the Maven repository](/logo.png)
com.github.dakusui.jcunit.fsm.Args Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcunit Show documentation
Show all versions of jcunit Show documentation
Automated combinatorial testing framework on top of JUnit
package com.github.dakusui.jcunit.fsm;
import com.github.dakusui.jcunit.core.utils.Checks;
import com.github.dakusui.jcunit.core.utils.StringUtils;
import com.github.dakusui.jcunit.core.utils.Utils;
import java.io.Serializable;
import java.lang.reflect.Type;
public class Args implements Serializable {
private final Object[] values;
public Args(Object[] values) {
Checks.checknotnull(values);
this.values = values;
}
public Object[] values() {
return this.values;
}
public int size() {
return this.values.length;
}
public Type[] types() {
return Utils.transformLazily(
Utils.asList(this.values),
new Utils.Form
© 2015 - 2025 Weber Informatics LLC | Privacy Policy