Package com.volantis.shared.iteration

Examples of com.volantis.shared.iteration.ReadOnlyCollectionIterator


public class Selection extends Type {

    private List keywords;

    public Iterator keywords() {
        return new ReadOnlyCollectionIterator(keywords);
    }
View Full Code Here


    public String getName() {
        return name;
    }

    public Iterator policies() {
        return new ReadOnlyCollectionIterator(policies);
    }
View Full Code Here

    public String getDeviceName() {
        return deviceName;
    }

    public Iterator userAgentPatterns() {
        return new ReadOnlyCollectionIterator(userAgentPatterns);
    }
View Full Code Here

    public Iterator userAgentPatterns() {
        return new ReadOnlyCollectionIterator(userAgentPatterns);
    }

    public Iterator headerPatterns() {
        return new ReadOnlyCollectionIterator(headerPatterns);
    }
View Full Code Here

TOP

Related Classes of com.volantis.shared.iteration.ReadOnlyCollectionIterator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.