Package com.eviware.soapui.support.types

Source Code of com.eviware.soapui.support.types.StringList

/*
*  soapUI, copyright (C) 2004-2011 eviware.com
*
*  soapUI is free software; you can redistribute it and/or modify it under the
*  terms of version 2.1 of the GNU Lesser General Public License as published by
*  the Free Software Foundation.
*
*  soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
*  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*  See the GNU Lesser General Public License for more details at gnu.org.
*/

package com.eviware.soapui.support.types;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;

import org.apache.xmlbeans.XmlException;

import com.eviware.soapui.config.StringListConfig;
import com.eviware.soapui.support.StringUtils;

public class StringList extends ArrayList<String>
{
  public StringList()
  {
    super();
  }

  public StringList( int initialCapacity )
  {
    super( initialCapacity );
  }

  public StringList( String[] strings )
  {
    super( strings == null ? new StringList() : Arrays.asList( strings ) );
  }

  public StringList( Object[] objects )
  {
    super();

    if( objects != null )
    for( Object object : objects )
      add( object == null ? null : object.toString() );
  }

  public StringList( Collection<?> objects )
  {
    super();

    if( objects != null )
    for( Object object : objects )
      add( object == null ? null : object.toString() );
  }

  public StringList( String paramStr )
  {
    this();
    add( paramStr );
  }

  public void addAll( String[] strings )
  {
    if( strings != null && strings.length > 0 )
    addAll( Arrays.asList( strings ) );
  }

  public String[] toStringArray()
  {
    return toArray( new String[size()] );
  }

  public static StringList fromXml( String value ) throws XmlException
  {
    return StringUtils.isNullOrEmpty( value ) || value.equals( "<xml-fragment/>" ) ? new StringList()
        : new StringList( StringListConfig.Factory.parse( value ).getEntryList() );
  }

  public String toXml()
  {
    StringListConfig config = StringListConfig.Factory.newInstance();
    config.setEntryArray( toStringArray() );
    return config.xmlText();
  }

  public boolean containsValue( String value )
  {
    for( String stringElement : this )
    {
      if( stringElement.contains( value ) )
      {
        return true;
      }
    }
    return false;
  }
}
TOP

Related Classes of com.eviware.soapui.support.types.StringList

TOP
Copyright © 2018 www.massapi.com. 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.