org.apache.struts2.util
类 MakeIterator

java.lang.Object
  继承者 org.apache.struts2.util.MakeIterator

public class MakeIterator
extends Object

MakeIterator.


构造方法摘要
MakeIterator()
           
 
方法摘要
static Iterator convert(Object value)
           
static boolean isIterable(Object object)
          Determine whether a given object can be made into an Iterator
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

MakeIterator

public MakeIterator()
方法详细信息

isIterable

public static boolean isIterable(Object object)
Determine whether a given object can be made into an Iterator

参数:
object - the object to check
返回:
true if the object can be converted to an iterator and false otherwise

convert

public static Iterator convert(Object value)