List of usage examples for java.util ArrayList subclass-usage
From source file uk.ac.tgac.conan.process.asm.KmerRange.java
/** * User: maplesod * Date: 14/08/13 * Time: 10:28 */ public class KmerRange extends ArrayList<Integer> {
From source file com.thoughtworks.go.config.SecretParams.java
public class SecretParams extends ArrayList<SecretParam> implements Serializable { private static final Pattern PATTERN = Pattern.compile("(?:\\{\\{SECRET:\\[(.*?)\\]\\[(.*?)\\]}})+"); public static final String MASKED_VALUE = "******"; public SecretParams() { }
From source file com.autentia.wuija.web.jsf.I18NSelectItemList.java
/**
* Prepara la lista de <code>SelectItem</code> en funcin de la lista de valores que se pasa en el constructor.
* <p>
* Si <code>propertyToShow</code> es null, el propio valor de la lista se vuelca como etiqueta del
* <code>SelectItem</code>.
* <p>
From source file ArrayUnenforcedSet.java
/**
* Helper for efficiently representing small sets whose elements are known to be
* unique by construction, implying we don't need to enforce the uniqueness
* property in the data structure itself. Use with caution.
*
* <p>Note that for equals/hashCode, the class implements the Set behavior
From source file cd.go.contrib.elasticagents.dockerswarm.elasticagent.DockerMounts.java
public class DockerMounts extends ArrayList<DockerMounts.DockerMount> { private static final Gson GSON = new Gson(); public static DockerMounts fromString(String mountsConfig) { final List<Map<String, String>> mounts = splitIntoLinesAndTrimSpaces(mountsConfig).stream() .filter(line -> isNotBlank(line)).map(line -> lineToMap(line)).collect(toList());
From source file cd.go.contrib.elasticagents.dockerswarm.elasticagent.DockerSecrets.java
public class DockerSecrets extends ArrayList<DockerSecrets.DockerSecret> { private static final Gson GSON = new Gson(); public static DockerSecrets fromString(String content) { final List<Map<String, String>> collect = splitIntoLinesAndTrimSpaces(content).stream() .filter(line -> isNotBlank(line)).map(line -> lineToMap(line)).collect(toList());
From source file de.ingrid.ibus.comm.ResultSet.java
/** * */ public class ResultSet extends ArrayList { private static final long serialVersionUID = ResultSet.class.getName().hashCode();
From source file ArrayStack.java
/**
* An implementation of the {@link java.util.Stack} API that is based on an
* <code>ArrayList</code> instead of a <code>Vector</code>, so it is not
* synchronized to protect against multi-threaded access. The implementation
* is therefore operates faster in environments where you do not need to
* worry about multiple thread contention.
From source file org.silverpeas.core.util.ListSlice.java
/** * This list represents a slice of a more complete lists and as such contains only the items that * are part of this slice. * @author mmoquillon */ public class ListSlice<T> extends ArrayList<T> implements SilverpeasList<T> {
From source file it.uniroma2.sag.kelp.linearization.nystrom.NystromMethodEnsemble.java
/**
* This class implements the Ensemble Nystrom Method to approximate the implicit
* space underlying a Kernel Function, thus producing a low-dimensional dense
* representation. <br>
* Several projection functions can be defined according to the Nystrom Method
* and they can be use together to improve approximation quality. <br>