Uses of Interface
railo.runtime.type.Array

Packages that use Array
coldfusion.server   
railo.commons.io.res.type.s3   
railo.commons.lang.font   
railo.runtime   
railo.runtime.cache   
railo.runtime.debug   
railo.runtime.exp   
railo.runtime.functions.arrays   
railo.runtime.functions.cache   
railo.runtime.functions.closure   
railo.runtime.functions.component   
railo.runtime.functions.file   
railo.runtime.functions.image   
railo.runtime.functions.list   
railo.runtime.functions.orm   
railo.runtime.functions.query   
railo.runtime.functions.string   
railo.runtime.functions.struct   
railo.runtime.functions.system   
railo.runtime.net.http   
railo.runtime.op   
railo.runtime.orm   
railo.runtime.orm.hibernate   
railo.runtime.query   
railo.runtime.regex   
railo.runtime.search   
railo.runtime.security   
railo.runtime.services   
railo.runtime.spooler   
railo.runtime.tag   
railo.runtime.text.xml   
railo.runtime.text.xml.struct   
railo.runtime.type   
railo.runtime.type.it   
railo.runtime.type.query   
railo.runtime.type.scope   
railo.runtime.type.trace   
railo.runtime.type.util   
railo.runtime.type.wrap   
railo.runtime.util   
 

Uses of Array in coldfusion.server
 

Methods in coldfusion.server that return Array
 Array DataSourceService.getNames()
           
 

Uses of Array in railo.commons.io.res.type.s3
 

Methods in railo.commons.io.res.type.s3 with parameters of type Array
static String[] S3Resource.toStringArray(Array array)
           
 

Uses of Array in railo.commons.lang.font
 

Methods in railo.commons.lang.font that return Array
static Array FontUtil.getAvailableFontsAsStringArray()
           
 

Uses of Array in railo.runtime
 

Methods in railo.runtime that return Array
 Array CFMLFactoryImpl.getInfo()
           
 Array PageContextImpl.getTemplatePath()
           
abstract  Array PageContext.getTemplatePath()
          array of current template stack
 

Uses of Array in railo.runtime.cache
 

Methods in railo.runtime.cache that return Array
 Array CacheEngine.keys(String filter)
           
 

Uses of Array in railo.runtime.debug
 

Methods in railo.runtime.debug that return Array
 Array DebuggerPool.getData(PageContext pc)
           
 

Uses of Array in railo.runtime.exp
 

Methods in railo.runtime.exp that return Array
 Array PageExceptionImpl.getTagContext(Config config)
           
static Array PageExceptionImpl.getTagContext(Config config, StackTraceElement[] traces)
           
 

Uses of Array in railo.runtime.functions.arrays
 

Methods in railo.runtime.functions.arrays that return Array
static Array ArrayNew.call(PageContext pc)
           
static Array ArrayReverse.call(PageContext pc, Array array)
           
static Array ArrayMerge.call(PageContext pc, Array arr1, Array arr2)
           
static Array ArrayMerge.call(PageContext pc, Array arr1, Array arr2, boolean leaveIndex)
           
static Array ArraySlice.call(PageContext pc, Array arr, double offset)
           
static Array ArrayMid.call(PageContext pc, Array arr, double start)
           
static Array ArraySlice.call(PageContext pc, Array arr, double offset, double length)
           
static Array ArrayMid.call(PageContext pc, Array arr, double start, double count)
           
static Array ArrayFindAll.call(PageContext pc, Array array, Object value)
           
static Array ArrayFindAllNoCase.call(PageContext pc, Array array, Object value)
           
static Array ArrayFilter.call(PageContext pc, Array array, UDF filter)
           
static Array ArrayNew.call(PageContext pc, double number)
           
static Array JsonArray.call(PageContext pc, Object[] objArr)
           
static Array Array_.call(PageContext pc, Object[] objArr)
           
static Array ArrayFindAll.find(Array array, Object value, boolean caseSensitive)
           
static Array ArrayFindAll.find(PageContext pc, Array array, UDF udf)
           
 

Methods in railo.runtime.functions.arrays with parameters of type Array
static void ArrayMerge.append(Array target, Array source)
           
static double ArraySum.call(PageContext pc, Array array)
           
static double ArrayAvg.call(PageContext pc, Array array)
           
static boolean ArrayClear.call(PageContext pc, Array array)
           
static Object ArrayLast.call(PageContext pc, Array array)
           
static Object ArrayFirst.call(PageContext pc, Array array)
           
static double ArrayMax.call(PageContext pc, Array array)
           
static Array ArrayReverse.call(PageContext pc, Array array)
           
static Struct ArrayToStruct.call(PageContext pc, Array arr)
           
static double ArrayMin.call(PageContext pc, Array array)
           
static double ArrayLen.call(PageContext pc, Array array)
           
static boolean ArrayIsEmpty.call(PageContext pc, Array array)
           
static Array ArrayMerge.call(PageContext pc, Array arr1, Array arr2)
           
static Array ArrayMerge.call(PageContext pc, Array arr1, Array arr2, boolean leaveIndex)
           
static boolean ArrayIsDefined.call(PageContext pc, Array array, double index)
           
static boolean ArrayResize.call(PageContext pc, Array array, double number)
           
static boolean ArrayIndexExists.call(PageContext pc, Array array, double index)
           
static Array ArraySlice.call(PageContext pc, Array arr, double offset)
           
static Array ArrayMid.call(PageContext pc, Array arr, double start)
           
static boolean ArrayDeleteAt.call(PageContext pc, Array array, double number)
           
static boolean ArraySwap.call(PageContext pc, Array array, double number, double number2)
           
static Array ArraySlice.call(PageContext pc, Array arr, double offset, double length)
           
static Array ArrayMid.call(PageContext pc, Array arr, double start, double count)
           
static boolean ArraySet.call(PageContext pc, Array array, double from, double to, Object value)
           
static boolean ArrayInsertAt.call(PageContext pc, Array array, double number, Object object)
           
static double ArrayContainsNoCase.call(PageContext pc, Array array, Object value)
           
static boolean ArrayPrepend.call(PageContext pc, Array array, Object object)
           
static boolean ArrayAppend.call(PageContext pc, Array array, Object object)
           
static double ArrayFindNoCase.call(PageContext pc, Array array, Object value)
           
static Array ArrayFindAll.call(PageContext pc, Array array, Object value)
           
static Array ArrayFindAllNoCase.call(PageContext pc, Array array, Object value)
           
static boolean ArraySort.call(PageContext pc, Array array, Object sortTypeOrClosure)
           
static boolean ArrayDelete.call(PageContext pc, Array array, Object value)
           
static double ArrayFind.call(PageContext pc, Array array, Object value)
           
static double ArrayContains.call(PageContext pc, Array array, Object value)
           
static boolean ArrayAppend.call(PageContext pc, Array array, Object object, boolean merge)
           
static double ArrayContains.call(PageContext pc, Array array, Object value, boolean substringMatch)
           
static boolean ArraySort.call(PageContext pc, Array array, Object sortTypeOrClosure, String sortorder)
           
static boolean ArrayDelete.call(PageContext pc, Array array, Object value, String scope)
           
static boolean ArraySort.call(PageContext pc, Array array, Object sortTypeOrClosure, String sortorder, boolean localeSensitive)
           
static Array ArrayFilter.call(PageContext pc, Array array, UDF filter)
           
static String ArrayEach.call(PageContext pc, Array array, UDF udf)
           
static String ArrayEach.call(PageContext pc, Array array, UDF udf, boolean parallel)
           
static String ArrayEach.call(PageContext pc, Array array, UDF udf, boolean parallel, double maxThreads)
           
static Array ArrayFindAll.find(Array array, Object value, boolean caseSensitive)
           
static int ArrayFind.find(Array array, Object value, boolean caseSensitive)
           
static Array ArrayFindAll.find(PageContext pc, Array array, UDF udf)
           
static int ArrayFind.find(PageContext pc, Array array, UDF udf)
           
static void ArrayMerge.set(Array target, Array source)
           
 

Uses of Array in railo.runtime.functions.cache
 

Methods in railo.runtime.functions.cache that return Array
static Array CacheGetAllIds.call(PageContext pc)
           
static Array CacheGetProperties.call(PageContext pc)
           
static Array CacheGetAllIds.call(PageContext pc, String filter)
           
static Array CacheGetProperties.call(PageContext pc, String cacheName)
           
static Array CacheGetAllIds.call(PageContext pc, String filter, String cacheName)
           
 

Uses of Array in railo.runtime.functions.closure
 

Methods in railo.runtime.functions.closure with parameters of type Array
static void Each.invoke(PageContext pc, Array array, UDF udf, ExecutorService execute, List<Future<String>> futures)
           
 

Uses of Array in railo.runtime.functions.component
 

Methods in railo.runtime.functions.component that return Array
static Array ComponentListPackage.call(PageContext pc, String packageName)
           
 

Uses of Array in railo.runtime.functions.file
 

Methods in railo.runtime.functions.file that return Array
static Array FileUploadAll.call(PageContext pc, String destination)
           
static Array FileUploadAll.call(PageContext pc, String destination, String accept)
           
static Array FileUploadAll.call(PageContext pc, String destination, String accept, String nameConflict)
           
static Array FileUploadAll.call(PageContext pc, String destination, String accept, String nameConflict, String mode)
           
static Array FileUploadAll.call(PageContext pc, String destination, String accept, String nameConflict, String mode, String attributes)
           
static Array FileUploadAll.call(PageContext pc, String destination, String accept, String nameConflict, String mode, String attributes, Object acl)
           
 

Uses of Array in railo.runtime.functions.image
 

Methods in railo.runtime.functions.image that return Array
static Array ImageFonts.call(PageContext pc)
           
 

Methods in railo.runtime.functions.image with parameters of type Array
static String ImageDrawLines.call(PageContext pc, Object name, Array xcoords, Array ycoords)
           
static String ImageDrawLines.call(PageContext pc, Object name, Array xcoords, Array ycoords, boolean isPolygon)
           
static String ImageDrawLines.call(PageContext pc, Object name, Array xcoords, Array ycoords, boolean isPolygon, boolean filled)
           
 

Uses of Array in railo.runtime.functions.list
 

Methods in railo.runtime.functions.list that return Array
static Array ListToArray.call(PageContext pc, String list)
           
static Array ListToArray.call(PageContext pc, String list, String delimiter)
           
static Array ListToArray.call(PageContext pc, String list, String delimiter, boolean includeEmptyFields)
           
static Array ListToArray.call(PageContext pc, String list, String delimiter, boolean includeEmptyFields, boolean multiCharacterDelimiter)
           
 

Methods in railo.runtime.functions.list with parameters of type Array
static String ArrayToList.call(PageContext pc, Array array)
           
static String ArrayToList.call(PageContext pc, Array array, char delimiter)
           
static String ArrayToList.call(PageContext pc, Array array, String delimiter)
           
 

Uses of Array in railo.runtime.functions.orm
 

Methods in railo.runtime.functions.orm that return Array
static Array EntityNameArray.call(PageContext pc)
           
 

Uses of Array in railo.runtime.functions.query
 

Methods in railo.runtime.functions.query that return Array
static Array QueryColumnArray.call(PageContext pc, Query qry)
           
static Array ValueArray.call(PageContext pc, QueryColumn column)
           
static Array QueryColumnData.call(PageContext pc, Query query, String columnName)
           
static Array QueryDeleteColumn.call(PageContext pc, Query query, String strColumn)
           
static Array QueryColumnData.call(PageContext pc, Query query, String columnName, UDF udf)
           
static Array ValueArray.call(PageContext pc, String strQueryColumn)
           
static Array QueryDeleteColumn.toArray(QueryColumn column)
           
 

Uses of Array in railo.runtime.functions.string
 

Methods in railo.runtime.functions.string that return Array
static Array REMatch.call(PageContext pc, String regExpr, String str)
           
static Array REMatchNoCase.call(PageContext pc, String regExpr, String str)
           
 

Uses of Array in railo.runtime.functions.struct
 

Methods in railo.runtime.functions.struct that return Array
static Array StructSort.call(PageContext pc, Struct base)
           
static Array StructKeyArray.call(PageContext pc, Struct struct)
           
static Array StructFindKey.call(PageContext pc, Struct struct, String value)
           
static Array StructSort.call(PageContext pc, Struct base, String sortType)
           
static Array StructFindValue.call(PageContext pc, Struct struct, String value)
           
static Array StructFindKey.call(PageContext pc, Struct struct, String value, String scope)
           
static Array StructSort.call(PageContext pc, Struct base, String sortType, String sortOrder)
           
static Array StructFindValue.call(PageContext pc, Struct struct, String value, String scope)
           
static Array StructSort.call(PageContext pc, Struct base, String sortType, String sortOrder, String pathToSubElement)
           
 

Uses of Array in railo.runtime.functions.system
 

Methods in railo.runtime.functions.system that return Array
static Array GetCurrentContext.call(PageContext pc)
           
static Array GetClassPath.call(PageContext pc)
           
static Array PagePoolList.call(PageContext pc)
           
static Array CallStackGet.call(PageContext pc)
           
 

Methods in railo.runtime.functions.system with parameters of type Array
static void CallStackGet._getTagContext(PageContext pc, Array tagContext, Throwable t, Collection.Key lineNumberName)
           
 

Uses of Array in railo.runtime.net.http
 

Methods in railo.runtime.net.http that return Array
static Array MultiPartResponseUtils.getParts(byte[] barr, String contentTypeHeader)
           
 

Uses of Array in railo.runtime.op
 

Methods in railo.runtime.op that return Array
 Array CreationImpl.createArray()
           
 Array CreationImpl.createArray(int dimension)
           
 Array CreationImpl.createArray(String list, String delimiter, boolean removeEmptyItem, boolean trim)
           
static Array Caster.toArray(Object o)
          cast a Object to a Array Object
 Array CastImpl.toArray(Object obj)
           
static Array Caster.toArray(Object o, Array defaultValue)
          cast a Object to a Array Object
 Array CastImpl.toArray(Object obj, Array defaultValue)
           
 

Methods in railo.runtime.op with parameters of type Array
static Array Caster.toArray(Object o, Array defaultValue)
          cast a Object to a Array Object
 Array CastImpl.toArray(Object obj, Array defaultValue)
           
 

Uses of Array in railo.runtime.orm
 

Methods in railo.runtime.orm that return Array
 Array ORMSession.loadAsArray(PageContext pc, String name, String id)
          load and return a array of Objects matching given id
 Array ORMSession.loadAsArray(PageContext pc, String name, String id, String order)
           
 Array ORMSession.loadAsArray(PageContext pc, String name, Struct filter)
          load and return a array of Objects matching given filter
 Array ORMSession.loadAsArray(PageContext pc, String name, Struct filter, Struct options)
          load and return a array of Objects matching given filter
 Array ORMSession.loadAsArray(PageContext pc, String name, Struct filter, Struct options, String order)
           
 Array ORMSession.loadByExampleAsArray(PageContext pc, Object obj)
          load and return a array of Objects matching given sampleEntity
 

Methods in railo.runtime.orm with parameters of type Array
 Object ORMSession.executeQuery(PageContext pc, String hql, Array params, boolean unique, Struct queryOptions)
           
 

Uses of Array in railo.runtime.orm.hibernate
 

Methods in railo.runtime.orm.hibernate that return Array
 Array HibernateORMSession.loadAsArray(PageContext pc, String name, String id)
           
 Array HibernateORMSession.loadAsArray(PageContext pc, String name, String id, String order)
           
 Array HibernateORMSession.loadAsArray(PageContext pc, String name, Struct filter)
           
 Array HibernateORMSession.loadAsArray(PageContext pc, String name, Struct filter, Struct options)
           
 Array HibernateORMSession.loadAsArray(PageContext pc, String name, Struct filter, Struct options, String order)
           
 Array HibernateORMSession.loadByExampleAsArray(PageContext pc, Object obj)
           
static Array HibernateCaster.toCFML(List src)
           
 

Methods in railo.runtime.orm.hibernate with parameters of type Array
 Object HibernateORMSession.executeQuery(PageContext pc, String hql, Array params, boolean unique, Struct queryOptions)
           
 

Uses of Array in railo.runtime.query
 

Methods in railo.runtime.query that return Array
 Array QueryCacheQuery.getMetaDataSimple()
           
 

Methods in railo.runtime.query with parameters of type Array
 boolean QueryCacheQuery.addColumn(Collection.Key columnName, Array content)
           
 boolean QueryCacheQuery.addColumn(Collection.Key columnName, Array content, int type)
           
 boolean QueryCacheQuery.addColumn(String columnName, Array content)
           
 boolean QueryCacheQuery.addColumn(String columnName, Array content, int type)
           
 

Uses of Array in railo.runtime.regex
 

Methods in railo.runtime.regex that return Array
static Array Perl5Util.match(String strPattern, String strInput, int offset, boolean caseSensitive)
           
 

Uses of Array in railo.runtime.search
 

Methods in railo.runtime.search that return Array
 Array SuggestionItem.getKeywords()
           
 Array SuggestionItem.getKeywordScore()
           
 

Uses of Array in railo.runtime.security
 

Constructors in railo.runtime.security with parameters of type Array
CredentialImpl(String username, String password, Array roles, Resource rolesDir)
          credential constructor
 

Uses of Array in railo.runtime.services
 

Methods in railo.runtime.services that return Array
 Array DataSourceServiceImpl.getNames()
           
 

Uses of Array in railo.runtime.spooler
 

Methods in railo.runtime.spooler that return Array
 Array SpoolerTaskSupport.getExceptions()
           
 Array SpoolerTask.getExceptions()
           
 

Uses of Array in railo.runtime.tag
 

Methods in railo.runtime.tag that return Array
static Array FileTag.actionUploadAll(PageContext pageContext, SecurityManager securityManager, String strDestination, int nameconflict, String accept, boolean strict, int mode, String attributes, Object acl, String serverPassword)
           
 

Uses of Array in railo.runtime.text.xml
 

Classes in railo.runtime.text.xml that implement Array
 class XMLNodeList
           
 

Uses of Array in railo.runtime.text.xml.struct
 

Classes in railo.runtime.text.xml.struct that implement Array
 class XMLMultiElementArray
           
 

Constructors in railo.runtime.text.xml.struct with parameters of type Array
XMLMultiElementStruct(Array array, boolean caseSensitive)
          Constructor of the class
 

Uses of Array in railo.runtime.type
 

Classes in railo.runtime.type that implement Array
 class ArrayImpl
          CFML array object
 class ArrayImplNS
          CFML array object
 class CastableArray
           
 class SVArray
          Simple Value Array, a Array that can't cast to a Simple Value
 

Methods in railo.runtime.type that return Array
 Array QueryImpl.getMetaDataSimple()
           
 Array Query.getMetaDataSimple()
           
static Array List.listToArrayRemoveEmpty(String list, char delimiter)
          Deprecated.  
static Array List.listToArrayRemoveEmpty(String list, String delimiter)
          Deprecated.  
static Array KeyImpl.toArray(Collection.Key[] keys)
           
static Array KeyImpl.toLowerCaseArray(Collection.Key[] keys)
           
static Array KeyImpl.toUpperCaseArray(Collection.Key[] keys)
           
 

Methods in railo.runtime.type with parameters of type Array
 boolean QueryImpl.addColumn(Collection.Key columnName, Array content)
           
 boolean Query.addColumn(Collection.Key columnName, Array content)
          adds a new column to the resultset
 boolean QueryImpl.addColumn(Collection.Key columnName, Array content, int type)
           
 boolean Query.addColumn(Collection.Key columnName, Array content, int type)
          adds a new column to the resultset
 boolean QueryImpl.addColumn(String columnName, Array content)
           
 boolean Query.addColumn(String columnName, Array content)
          Deprecated. use instead Query.addColumn(railo.runtime.type.Collection.Key, Array)
 boolean QueryImpl.addColumn(String columnName, Array content, int type)
           
 boolean Query.addColumn(String columnName, Array content, int type)
          Deprecated. use instead Query.addColumn(railo.runtime.type.Collection.Key, Array, int)
 

Constructors in railo.runtime.type with parameters of type Array
QueryColumnImpl(QueryImpl query, Collection.Key key, Array array, int type)
          constructor with array
QueryImpl(Array arrColumns, Array arrTypes, int rowNumber, String name)
          constructor of the class, to generate a empty resultset (no database execution)
QueryImpl(Array arrColumns, int rowNumber, String name)
          constructor of the class, to generate a empty resultset (no database execution)
QueryImpl(Collection.Key[] columnNames, Array[] arrColumns, String name)
           
QueryImpl(String[] strColumnNames, Array[] arrColumns, String name)
          constructor of the class
 

Uses of Array in railo.runtime.type.it
 

Constructors in railo.runtime.type.it with parameters of type Array
ArrayListIteratorImpl(Array array, int index)
          Constructor of the class
 

Uses of Array in railo.runtime.type.query
 

Methods in railo.runtime.type.query that return Array
 Array SimpleQuery.getMetaDataSimple()
           
 

Methods in railo.runtime.type.query with parameters of type Array
 boolean SimpleQuery.addColumn(Collection.Key columnName, Array content)
           
 boolean SimpleQuery.addColumn(Collection.Key columnName, Array content, int type)
           
 boolean SimpleQuery.addColumn(String columnName, Array content)
           
 boolean SimpleQuery.addColumn(String columnName, Array content, int type)
           
 

Uses of Array in railo.runtime.type.scope
 

Subinterfaces of Array in railo.runtime.type.scope
 interface Argument
          interface for Argument scope
 

Classes in railo.runtime.type.scope that implement Array
 class ArgumentImpl
          implementation of the argument scope
 class ArgumentThreadImpl
           
 

Methods in railo.runtime.type.scope that return Array
static Array ArgumentImpl.toArray(Argument arg)
          converts a argument scope to a regular array
 

Uses of Array in railo.runtime.type.trace
 

Classes in railo.runtime.type.trace that implement Array
 class TOArray
           
 

Methods in railo.runtime.type.trace that return Array
 Array TOQuery.getMetaDataSimple()
           
 

Methods in railo.runtime.type.trace with parameters of type Array
 boolean TOQuery.addColumn(Collection.Key columnName, Array content)
           
 boolean TOQuery.addColumn(Collection.Key columnName, Array content, int type)
           
 boolean TOQuery.addColumn(String columnName, Array content)
           
 boolean TOQuery.addColumn(String columnName, Array content, int type)
           
 

Uses of Array in railo.runtime.type.util
 

Classes in railo.runtime.type.util that implement Array
 class ArraySupport
           
 

Methods in railo.runtime.type.util that return Array
static Array ListUtil.listToArray(String list, char delimiter)
          casts a list to Array object
static Array ListUtil.listToArray(String list, String delimiter)
          casts a list to Array object
static Array ListUtil.listToArray(String list, String delimiter, boolean multiCharDelim)
           
static Array ListUtil.listToArrayRemoveEmpty(String list, char delimiter)
          casts a list to Array object remove Empty Elements
static Array ListUtil.listToArrayRemoveEmpty(String list, String delimiter)
           
static Array ListUtil.listToArrayRemoveEmpty(String list, String delimiter, boolean multiCharDelim)
          casts a list to Array object remove Empty Elements
static Array ListUtil.listToArrayTrim(String list, char delimiter)
          casts a list to Array object, remove all empty items at start and end of the list
static Array ListUtil.listToArrayTrim(String list, char delimiter, int[] info)
          casts a list to Array object, remove all empty items at start and end of the list
static Array ListUtil.listToArrayTrim(String list, String delimiter)
          casts a list to Array object, remove all empty items at start and end of the list
static Array ListUtil.listToArrayTrim(String list, String delimiter, int[] info)
          casts a list to Array object, remove all empty items at start and end of the list and store count to info
static Array ListUtil.listWithQuotesToArray(String list, String delimiter, String quotes)
          casts a list to Array object, the list can be have quoted (",') arguments and delimter in this arguments are ignored.
static Array ListUtil.trimItems(Array arr)
          trim every single item of the array
 

Methods in railo.runtime.type.util with parameters of type Array
static int ArrayUtil.arrayContainsIgnoreEmpty(Array arr, String value, boolean ignoreCase)
           
static String ListUtil.arrayToList(Array array, String delimiter)
          convert Array Object to string list
static double ArrayUtil.avg(Array array)
          average of all values of the array, only work when all values are numeric
static int ArrayUtil.find(Array array, Object object)
          find a object in array
static double ArrayUtil.max(Array array)
          the greatest value, of all values inside the array, only work when all values are numeric
static double ArrayUtil.min(Array array)
          the smallest value, of all values inside the array, only work when all values are numeric
static long ArrayUtil.sizeOf(Array array)
           
static double ArrayUtil.sum(Array array)
          sum of all values of a array, only work when all values are numeric
static void ArrayUtil.swap(Array array, int left, int right)
          swap to values of the array
static String[] ListUtil.toStringArray(Array array)
          cast a Object Array to a String Array
static String[] ListUtil.toStringArray(Array array, String defaultValue)
          cast a Object Array to a String Array
static String[] ListUtil.toStringArrayEL(Array array)
          cast a Object Array to a String Array
static String[] ListUtil.toStringArrayTrim(Array array)
          cast a Object Array to a String Array and trim all values
static Array ListUtil.trimItems(Array arr)
          trim every single item of the array
 

Uses of Array in railo.runtime.type.wrap
 

Classes in railo.runtime.type.wrap that implement Array
 class ListAsArray
           
 

Methods in railo.runtime.type.wrap that return Array
static Array ListAsArray.toArray(List list)
           
 

Methods in railo.runtime.type.wrap with parameters of type Array
static ArrayList ArrayAsArrayList.toArrayList(Array array)
           
static List ArrayAsList.toList(Array array)
           
 

Uses of Array in railo.runtime.util
 

Methods in railo.runtime.util that return Array
 Array Creation.createArray()
          creates and returns a array instance
 Array Creation.createArray(int dimension)
          creates and returns a array instance
 Array Creation.createArray(String list, String delimiter, boolean removeEmptyItem, boolean trim)
          creates and returns a array based on a string list
 Array Cast.toArray(Object obj)
          cast a Object to a Array Object
 Array Cast.toArray(Object obj, Array defaultValue)
          cast a Object to a Array Object
 

Methods in railo.runtime.util with parameters of type Array
 Array Cast.toArray(Object obj, Array defaultValue)
          cast a Object to a Array Object
 



Copyright © 2012 Railo