Example usage for java.util ArrayList subclass-usage

List of usage examples for java.util ArrayList subclass-usage

Introduction

In this page you can find the example usage for java.util ArrayList subclass-usage.

Usage

From source file facebook4j.internal.json.PagableListImpl.java

/**
 * @author Ryuji Yamashita - roundrop at gmail.com
 */
/*package*/ class PagableListImpl<T> extends ArrayList<T> implements PagableList<T> {
    private static final long serialVersionUID = 3378755563757846762L;

From source file com.thoughtworks.go.config.Agents.java

@ConfigTag("agents")
@ConfigCollection(AgentConfig.class)
public class Agents extends ArrayList<AgentConfig> implements Validatable {
    private ConfigErrors errors = new ConfigErrors();
    private String elasticAgentId = "elasticAgentId";

From source file com.github.wnameless.json.flattener.JsonifyArrayList.java

/**
 * {@link JsonifyArrayList} is simply a ArrayList but with an override jsonify
 * toString method.
 * 
 * @author Wei-Ming Wu
 *

From source file flex2.compiler.util.IteratorList.java

/**
 * Utility wrapper for IteratorChain, culls empty adds and exploits
 * singletons.
 */
public class IteratorList extends ArrayList<Iterator> {
    private static final long serialVersionUID = -5093248926480065063L;

From source file be.ceau.chart.objects.OptionalArray.java

/**
 * ArrayList subclass with special serialization behavior: if only one item
 * contained, the item will be serialized as a single value.
 */
@JsonSerialize(using = OptionalArray.Serializer.class)
public class OptionalArray<E> extends ArrayList<E> {

From source file org.openbp.common.util.SortingArrayList.java

/**
 * Array list that sorts its contents.
 * If the {@link #setAutoSort} property is set to true, the list will sort after any add operation to the list.
 * Otherwise, the {@link #sort} method must be called.
 *
 * The list will use the comparator 

From source file org.artifactory.rest.common.list.StringList.java

/**
 * Special list that add split constructor string by token"," and add only not only whiteSpaces elements
 *
 * @author Eli Givoni
 */
public class StringList extends ArrayList<String> {

From source file org.janusgraph.graphdb.query.condition.MultiCondition.java

/**
 * Abstract condition element that combines multiple conditions (for instance, AND, OR).
 *
 * @see And
 * @see Or
 * @author Matthias Broecheler (me@matthiasb.com)

From source file org.apache.arrow.vector.util.JsonStringArrayList.java

public class JsonStringArrayList<E> extends ArrayList<E> {

    private static ObjectMapper mapper;

    static {
        mapper = new ObjectMapper();

From source file org.pentaho.di.core.util.AddClosureArrayList.java

/**
 * @param <T>
 *          type.
 * @author <a href="mailto:thomas.hoedl@aschauer-edv.at">Thomas Hoedl(asc042)</a>
 *
 */