railo.runtime.type
Class QueryColumnImpl

java.lang.Object
  extended by railo.runtime.type.QueryColumnImpl
All Implemented Interfaces:
Serializable, Cloneable, Dumpable, Castable, Collection, Iteratorable, Objects, QueryColumn, QueryColumnPro, Reference, Sizeable
Direct Known Subclasses:
DebugQueryColumn

public class QueryColumnImpl
extends Object
implements QueryColumnPro, Sizeable, Objects

implementation of the query column

See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from interface railo.runtime.type.Collection
Collection.Key
 
Constructor Summary
QueryColumnImpl()
          Constructor of the class for internal usage only
QueryColumnImpl(QueryImpl query, Collection.Key key, Array array, int type)
          constructor with array
QueryColumnImpl(QueryImpl query, Collection.Key key, int type)
          constructor with type
QueryColumnImpl(QueryImpl query, Collection.Key key, int type, int size)
           
 
Method Summary
 void add(int index, Object element)
           
 void add(Object value)
          adds a value to the column
 boolean addAll(Collection<? extends Object> c)
           
 boolean addAll(int index, Collection<? extends Object> c)
           
 void addRow(int count)
           
 Object call(PageContext pc, Collection.Key methodName, Object[] arguments)
          calls a method of the object
 Object call(PageContext pc, String methodName, Object[] arguments)
          calls a method of the object
 Object callWithNamedValues(PageContext pc, Collection.Key methodName, Struct args)
          call a method of the Object with named arguments
 Object callWithNamedValues(PageContext pc, String methodName, Struct args)
          call a method of the Object with named arguments
 Boolean castToBoolean(Boolean defaultValue)
          cast the castable value to a boolean value
 boolean castToBooleanValue()
          cast the castable value to a boolean value
 DateTime castToDateTime()
          cast the castable value to a date time object
 DateTime castToDateTime(DateTime defaultValue)
          cast the castable value to a date time object
 double castToDoubleValue()
          cast the castable value to a double value
 double castToDoubleValue(double defaultValue)
          cast the castable value to a double value
 String castToString()
          cast the castable value to a string, other than the Method toString, this Method can throw a Exception
 String castToString(String defaultValue)
          cast the castable value to a string, return the default value, when the method is not castable
 void clear()
          clears the collection
 Object clone()
           
 QueryColumnPro cloneColumn(QueryImpl query, boolean deepCopy)
           
 int compareTo(boolean b)
           
 int compareTo(DateTime dt)
           
 int compareTo(double d)
           
 int compareTo(String str)
           
 boolean contains(Object o)
           
 boolean containsAll(Collection<?> c)
           
 boolean containsKey(Collection.Key key)
          contains this key
 boolean containsKey(String key)
          contains this key
 void cutRowsTo(int maxrows)
          cuts row to defined size
 Collection duplicate(boolean deepCopy)
           
 boolean equals(Object obj)
           
 Object get(Collection.Key key)
          return a value from the collection
 Object get(Collection.Key key, Object defaultValue)
          return a value from the collection, if key doesn't exist, dont throw a exception, reeturns null
 Object get(int row)
          get method with a int as key
 Object get(int row, Object defaultValue)
          getExpressionLess method with a int as key
 Object get(PageContext pc)
           
 Object get(PageContext pc, Collection.Key key)
          return property or getter of the ContextCollection
 Object get(PageContext pc, Collection.Key key, Object defaultValue)
          return property
 Object get(PageContext pc, Object defaultValue)
           
 Object get(PageContext pc, String key)
          return property or getter of the ContextCollection
 Object get(PageContext pc, String key, Object defaultValue)
          return property
 Object get(String key)
          return a value from the collection
 Object get(String key, Object defaultValue)
          return a value from the collection, if key doesn't exist, dont throw a exception, reeturns null
 Collection.Key getKey()
           
 String getKeyAsString()
           
 Object getParent()
           
 int getType()
           
 String getTypeAsString()
           
 int indexOf(Object o)
           
 boolean isEmpty()
           
 boolean isInitalized()
           
 Iterator iterator()
           
 Iterator keyIterator()
           
 Collection.Key[] keys()
           
 String[] keysAsString()
           
 int lastIndexOf(Object o)
           
 Object remove(Collection.Key key)
          removes value from collection and return it when it exists, otherwise throws a exception
 Object remove(int row)
          removes the value but dont the index
 Object remove(PageContext pc)
          clears the variable from collection
 boolean removeAll(Collection<?> c)
           
 Object removeEL(Collection.Key key)
          removes value from collection and return it when it exists, otherwise returns null
 Object removeEL(int row)
          removes method with int as key
 Object removeEL(PageContext pc)
          clears the variable from collection
 Object removeRow(int row)
          remove a row from query
 boolean retainAll(Collection<?> c)
           
 Object set(Collection.Key key, Object value)
          sets a value to the collection
 Object set(int row, Object value)
          set method with a int as key
 Object set(PageContext pc, Collection.Key propertyName, Object value)
          sets a property (Data Member) value of the object
 Object set(PageContext pc, Object value)
           
 Object set(PageContext pc, String propertyName, Object value)
          sets a property (Data Member) value of the object
 Object set(String key, Object value)
          sets a value to the collection
 Object setEL(Collection.Key key, Object value)
          sets a value to the collection, if key doesn't exist, dont throw a exception, returns null
 Object setEL(int row, Object value)
          setExpressionLess method with a int as key
 Object setEL(PageContext pc, Collection.Key propertyName, Object value)
          sets a property (Data Member) value of the object
 Object setEL(PageContext pc, Object value)
           
 Object setEL(PageContext pc, String propertyName, Object value)
          sets a property (Data Member) value of the object
 Object setEL(String key, Object value)
          sets a value to the collection, if key doesn't exist, dont throw a exception, returns null
 void setKey(Collection.Key key)
           
 int size()
           
 long sizeOf()
          return the size of the object
 List<Object> subList(int fromIndex, int toIndex)
           
 Object[] toArray()
           
 Object[] toArray(Object[] trg)
           
 QueryColumnPro toDebugColumn()
           
 DumpData toDumpData(PageContext pageContext, int maxlevel, DumpProperties dp)
          method to print out information to a object as HTML
 String toString()
           
 Object touch(int row)
          touch the given line on the column at given row
 Object touch(PageContext pc)
          create it when not exists
 Object touchEL(int row)
          touch the given line on the column at given row
 Object touchEL(PageContext pc)
          create it when not exists
 Iterator valueIterator()
           
 
Methods inherited from class java.lang.Object
getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

QueryColumnImpl

public QueryColumnImpl(QueryImpl query,
                       Collection.Key key,
                       int type)
constructor with type

Parameters:
query -
key -
type -

QueryColumnImpl

public QueryColumnImpl(QueryImpl query,
                       Collection.Key key,
                       Array array,
                       int type)
constructor with array

Parameters:
query -
array -
type -

QueryColumnImpl

public QueryColumnImpl(QueryImpl query,
                       Collection.Key key,
                       int type,
                       int size)
Parameters:
query -
type - type as (java.sql.Types.XYZ) int
size -

QueryColumnImpl

public QueryColumnImpl()
Constructor of the class for internal usage only

Method Detail

size

public int size()
Specified by:
size in interface Collection
Returns:
the size of the collection
See Also:
Collection.size()

keysAsString

public String[] keysAsString()
Specified by:
keysAsString in interface Collection
Returns:
returns a string array of all keys in the collection
See Also:
Collection.keysAsString()

keys

public Collection.Key[] keys()
Specified by:
keys in interface Collection
Returns:
returns a string array of all keys in the collection

remove

public Object remove(Collection.Key key)
              throws PageException
Description copied from interface: Collection
removes value from collection and return it when it exists, otherwise throws a exception

Specified by:
remove in interface Collection
Parameters:
key - key of the collection
Returns:
removed Object
Throws:
PageException
See Also:
Collection.remove(railo.runtime.type.Collection.Key)

remove

public Object remove(int row)
              throws DatabaseException
Description copied from interface: QueryColumn
removes the value but dont the index

Specified by:
remove in interface QueryColumn
Returns:
removed Object
Throws:
DatabaseException
See Also:
QueryColumn.remove(int)

removeEL

public Object removeEL(Collection.Key key)
Description copied from interface: Collection
removes value from collection and return it when it exists, otherwise returns null

Specified by:
removeEL in interface Collection
Parameters:
key - key of the collection
Returns:
removed Object
See Also:
Collection.removeEL(railo.runtime.type.Collection.Key)

removeEL

public Object removeEL(int row)
Description copied from interface: QueryColumn
removes method with int as key

Specified by:
removeEL in interface QueryColumn
Returns:
removed Object
See Also:
QueryColumn.removeEL(int)

clear

public void clear()
Description copied from interface: Collection
clears the collection

Specified by:
clear in interface Collection
See Also:
Collection.clear()

remove

public Object remove(PageContext pc)
              throws PageException
Description copied from interface: Reference
clears the variable from collection

Specified by:
remove in interface Reference
Returns:
removed Object
Throws:
PageException
See Also:
Reference.remove(PageContext pc)

removeEL

public Object removeEL(PageContext pc)
Description copied from interface: Reference
clears the variable from collection

Specified by:
removeEL in interface Reference
Returns:
removed Object

get

public Object get(String key)
           throws PageException
Description copied from interface: Collection
return a value from the collection

Specified by:
get in interface Collection
Parameters:
key - key of the value to get
Returns:
value on key position
Throws:
PageException
See Also:
Collection.get(java.lang.String)

get

public Object get(Collection.Key key)
           throws PageException
Description copied from interface: Collection
return a value from the collection

Specified by:
get in interface Collection
Parameters:
key - key of the value to get must be lower case
Returns:
value on key position
Throws:
PageException
See Also:
Collection.get(railo.runtime.type.Collection.Key)

get

public Object get(PageContext pc,
                  String key)
           throws PageException
Description copied from interface: Objects
return property or getter of the ContextCollection

Specified by:
get in interface Objects
Parameters:
pc - PageContext
key - Name of the Property
Returns:
return value of the Property
Throws:
PageException
See Also:
railo.runtime.type.ContextCollection#get(railo.runtime.PageContext, java.lang.String)

get

public Object get(int row)
Description copied from interface: QueryColumn
get method with a int as key

Specified by:
get in interface QueryColumn
Parameters:
row - row to get value
Returns:
row value
See Also:
QueryColumn.get(int)

touch

public Object touch(int row)
             throws DatabaseException
touch the given line on the column at given row

Parameters:
row -
Returns:
new row or existing
Throws:
DatabaseException

touchEL

public Object touchEL(int row)
touch the given line on the column at given row

Parameters:
row -
Returns:
new row or existing
Throws:
DatabaseException

get

public Object get(Collection.Key key,
                  Object defaultValue)
Description copied from interface: Collection
return a value from the collection, if key doesn't exist, dont throw a exception, reeturns null

Specified by:
get in interface Collection
Parameters:
key - key of the value to get
Returns:
value on key position or null
See Also:
Collection.get(railo.runtime.type.Collection.Key, java.lang.Object)

get

public Object get(String key,
                  Object defaultValue)
Description copied from interface: Collection
return a value from the collection, if key doesn't exist, dont throw a exception, reeturns null

Specified by:
get in interface Collection
Parameters:
key - key of the value to get
Returns:
value on key position or null
See Also:
Collection.get(java.lang.String, java.lang.Object)

get

public Object get(PageContext pc,
                  String key,
                  Object defaultValue)
Description copied from interface: Objects
return property

Specified by:
get in interface Objects
Parameters:
pc -
key -
defaultValue -
Returns:

get

public Object get(int row,
                  Object defaultValue)
Description copied from interface: QueryColumn
getExpressionLess method with a int as key

Specified by:
get in interface QueryColumn
Parameters:
row - row to get value
Returns:
row value
See Also:
QueryColumn.get(int, java.lang.Object)

set

public Object set(String key,
                  Object value)
           throws PageException
Description copied from interface: Collection
sets a value to the collection

Specified by:
set in interface Collection
Parameters:
key - key of the new value
value - value to set
Returns:
value setted
Throws:
PageException
See Also:
Collection.set(java.lang.String, java.lang.Object)

set

public Object set(Collection.Key key,
                  Object value)
           throws PageException
Description copied from interface: Collection
sets a value to the collection

Specified by:
set in interface Collection
Parameters:
key - key of the new value
value - value to set
Returns:
value setted
Throws:
PageException

set

public Object set(int row,
                  Object value)
           throws DatabaseException
Description copied from interface: QueryColumn
set method with a int as key

Specified by:
set in interface QueryColumn
Parameters:
row - row to set
value - value to set
Returns:
setted value
Throws:
DatabaseException
See Also:
QueryColumn.set(int, java.lang.Object)

setEL

public Object setEL(String key,
                    Object value)
Description copied from interface: Collection
sets a value to the collection, if key doesn't exist, dont throw a exception, returns null

Specified by:
setEL in interface Collection
Parameters:
key - key of the value to get
value - value to set
Returns:
value on key position or null
See Also:
Collection.setEL(java.lang.String, java.lang.Object)

setEL

public Object setEL(Collection.Key key,
                    Object value)
Description copied from interface: Collection
sets a value to the collection, if key doesn't exist, dont throw a exception, returns null

Specified by:
setEL in interface Collection
Parameters:
key - key of the value to get
value - value to set
Returns:
value on key position or null

setEL

public Object setEL(int row,
                    Object value)
Description copied from interface: QueryColumn
setExpressionLess method with a int as key

Specified by:
setEL in interface QueryColumn
Parameters:
row - row to set
value - value to set
Returns:
setted value
See Also:
QueryColumn.setEL(int, java.lang.Object)

add

public void add(Object value)
Description copied from interface: QueryColumn
adds a value to the column

Specified by:
add in interface QueryColumn
Parameters:
value - value to add
See Also:
QueryColumn.add(java.lang.Object)

cutRowsTo

public void cutRowsTo(int maxrows)
Description copied from interface: QueryColumn
cuts row to defined size

Specified by:
cutRowsTo in interface QueryColumn
See Also:
QueryColumn.cutRowsTo(int)

addRow

public void addRow(int count)
Specified by:
addRow in interface QueryColumn
Parameters:
count - adds count row to the column
See Also:
QueryColumn.addRow(int)

removeRow

public Object removeRow(int row)
                 throws DatabaseException
Description copied from interface: QueryColumn
remove a row from query

Specified by:
removeRow in interface QueryColumn
Returns:
removed value
Throws:
DatabaseException

getType

public int getType()
Specified by:
getType in interface QueryColumn
Parameters:
reorganize -
Returns:
returns the type of the Column (java.sql.Types.XYZ)
See Also:
QueryColumn.getType()

getTypeAsString

public String getTypeAsString()
Specified by:
getTypeAsString in interface QueryColumn
Returns:
returns the type of the Column as String
See Also:
QueryColumn.getTypeAsString()

toDumpData

public DumpData toDumpData(PageContext pageContext,
                           int maxlevel,
                           DumpProperties dp)
Description copied from interface: Dumpable
method to print out information to a object as HTML

Specified by:
toDumpData in interface Dumpable
Returns:
HTML print out
See Also:
railo.runtime.dump.Dumpable#toDumpData(railo.runtime.PageContext, int)

getKey

public Collection.Key getKey()
Specified by:
getKey in interface Reference
Returns:
returns the value of the Variable

setKey

public void setKey(Collection.Key key)
Specified by:
setKey in interface QueryColumnPro

getKeyAsString

public String getKeyAsString()
                      throws PageException
Specified by:
getKeyAsString in interface Reference
Returns:
returns the value of the Variable
Throws:
PageException
See Also:
Reference.getKeyAsString()

get

public Object get(PageContext pc)
Specified by:
get in interface Reference
Parameters:
pc - PageContext of the actuell Request
Returns:
returns the value of the Variable
See Also:
Reference.get(railo.runtime.PageContext)

get

public Object get(PageContext pc,
                  Object defaultValue)
Specified by:
get in interface Reference
Parameters:
pc - PageContext of the actuell Request
Returns:
returns the value of the Variable
See Also:
Reference.get(railo.runtime.PageContext, java.lang.Object)

touch

public Object touch(PageContext pc)
             throws PageException
Description copied from interface: Reference
create it when not exists

Specified by:
touch in interface Reference
Returns:
removed Object
Throws:
PageException
See Also:
Reference.touch(railo.runtime.PageContext)

touchEL

public Object touchEL(PageContext pc)
Description copied from interface: Reference
create it when not exists

Specified by:
touchEL in interface Reference
Returns:
removed Object

set

public Object set(PageContext pc,
                  Object value)
           throws PageException
Specified by:
set in interface Reference
Parameters:
pc - PageContext of the actuell Request
value - resets the value of the variable
Returns:
new Value setted
Throws:
PageException
See Also:
Reference.set(railo.runtime.PageContext, java.lang.Object)

setEL

public Object setEL(PageContext pc,
                    Object value)
Specified by:
setEL in interface Reference
Parameters:
pc - PageContext of the actuell Request
value - resets the value of the variable
Returns:
new Value setted
See Also:
Reference.setEL(railo.runtime.PageContext, java.lang.Object)

getParent

public Object getParent()
Specified by:
getParent in interface Reference
Returns:
returns the collection
See Also:
Reference.getParent()

castToString

public String castToString()
                    throws PageException
Description copied from interface: Castable
cast the castable value to a string, other than the Method toString, this Method can throw a Exception

Specified by:
castToString in interface Castable
Returns:
String representation of the Object
Throws:
PageException
See Also:
Castable.castToString()

castToString

public String castToString(String defaultValue)
Description copied from interface: Castable
cast the castable value to a string, return the default value, when the method is not castable

Specified by:
castToString in interface Castable
Returns:
String representation of the Object
See Also:
Castable.castToString(java.lang.String)

castToBooleanValue

public boolean castToBooleanValue()
                           throws PageException
Description copied from interface: Castable
cast the castable value to a boolean value

Specified by:
castToBooleanValue in interface Castable
Returns:
boolean Value representation of the Object
Throws:
PageException
See Also:
Castable.castToBooleanValue()

castToBoolean

public Boolean castToBoolean(Boolean defaultValue)
Description copied from interface: Castable
cast the castable value to a boolean value

Specified by:
castToBoolean in interface Castable
Returns:
boolean Value representation of the Object
See Also:
Castable.castToBoolean(java.lang.Boolean)

castToDoubleValue

public double castToDoubleValue()
                         throws PageException
Description copied from interface: Castable
cast the castable value to a double value

Specified by:
castToDoubleValue in interface Castable
Returns:
double Value representation of the Object
Throws:
PageException
See Also:
Castable.castToDoubleValue()

castToDoubleValue

public double castToDoubleValue(double defaultValue)
Description copied from interface: Castable
cast the castable value to a double value

Specified by:
castToDoubleValue in interface Castable
Returns:
double Value representation of the Object
See Also:
Castable.castToDoubleValue(double)

castToDateTime

public DateTime castToDateTime()
                        throws PageException
Description copied from interface: Castable
cast the castable value to a date time object

Specified by:
castToDateTime in interface Castable
Returns:
date time representation of the Object
Throws:
PageException
See Also:
Castable.castToDateTime()

castToDateTime

public DateTime castToDateTime(DateTime defaultValue)
Description copied from interface: Castable
cast the castable value to a date time object

Specified by:
castToDateTime in interface Castable
Parameters:
defaultValue - returned when it is not possible to cast to a dateTime object
Returns:
date time representation of the Object
See Also:
Castable.castToDateTime(railo.runtime.type.dt.DateTime)

compareTo

public int compareTo(boolean b)
              throws PageException
Specified by:
compareTo in interface Castable
Throws:
PageException
See Also:
railo.runtime.op.Castable#compare(boolean)

compareTo

public int compareTo(DateTime dt)
              throws PageException
Specified by:
compareTo in interface Castable
Throws:
PageException
See Also:
Castable.compareTo(railo.runtime.type.dt.DateTime)

compareTo

public int compareTo(double d)
              throws PageException
Specified by:
compareTo in interface Castable
Throws:
PageException
See Also:
Castable.compareTo(double)

compareTo

public int compareTo(String str)
              throws PageException
Specified by:
compareTo in interface Castable
Throws:
PageException
See Also:
Castable.compareTo(java.lang.String)

clone

public Object clone()
Specified by:
clone in interface Collection
Overrides:
clone in class Object
Returns:
this object cloned
See Also:
Collection.clone()

duplicate

public Collection duplicate(boolean deepCopy)
Specified by:
duplicate in interface Collection

cloneColumn

public QueryColumnPro cloneColumn(QueryImpl query,
                                  boolean deepCopy)
Specified by:
cloneColumn in interface QueryColumnPro

toString

public String toString()
Overrides:
toString in class Object
See Also:
Object.toString()

containsKey

public boolean containsKey(String key)
Description copied from interface: Collection
contains this key

Specified by:
containsKey in interface Collection
Returns:
returns if collection has a key with given name
See Also:
Collection.containsKey(java.lang.String)

containsKey

public boolean containsKey(Collection.Key key)
Description copied from interface: Collection
contains this key

Specified by:
containsKey in interface Collection
Returns:
returns if collection has a key with given name
See Also:
Collection.containsKey(railo.runtime.type.Collection.Key)

sizeOf

public long sizeOf()
Description copied from interface: Sizeable
return the size of the object

Specified by:
sizeOf in interface Sizeable
Returns:
size of the object
See Also:
Sizeable.sizeOf()

iterator

public Iterator iterator()
Specified by:
iterator in interface Iteratorable
Returns:
return a Iterator for keys
See Also:
Iteratorable.iterator()

keyIterator

public Iterator keyIterator()
Specified by:
keyIterator in interface Iteratorable
Returns:
return a Iterator for Keys as String
See Also:
Iteratorable.keyIterator()

valueIterator

public Iterator valueIterator()
Specified by:
valueIterator in interface Iteratorable
Returns:
return a Iterator for Values
See Also:
Iteratorable.valueIterator()

callWithNamedValues

public Object callWithNamedValues(PageContext pc,
                                  Collection.Key methodName,
                                  Struct args)
                           throws PageException
Description copied from interface: Objects
call a method of the Object with named arguments

Specified by:
callWithNamedValues in interface Objects
Parameters:
pc - PageContext
methodName - name of the method
args - Named Arguments for the method
Returns:
return result of the method
Throws:
PageException
See Also:
Objects.callWithNamedValues(railo.runtime.PageContext, railo.runtime.type.Collection.Key, railo.runtime.type.Struct)

call

public Object call(PageContext pc,
                   Collection.Key methodName,
                   Object[] arguments)
            throws PageException
Description copied from interface: Objects
calls a method of the object

Specified by:
call in interface Objects
methodName - name of the method to call
arguments - arguments to call method with
Returns:
return value of the method
Throws:
PageException
See Also:
Objects.call(railo.runtime.PageContext, railo.runtime.type.Collection.Key, java.lang.Object[])

call

public Object call(PageContext pc,
                   String methodName,
                   Object[] arguments)
            throws PageException
Description copied from interface: Objects
calls a method of the object

Specified by:
call in interface Objects
methodName - name of the method to call
arguments - arguments to call method with
Returns:
return value of the method
Throws:
PageException
See Also:
Objects.call(railo.runtime.PageContext, java.lang.String, java.lang.Object[])

callWithNamedValues

public Object callWithNamedValues(PageContext pc,
                                  String methodName,
                                  Struct args)
                           throws PageException
Description copied from interface: Objects
call a method of the Object with named arguments

Specified by:
callWithNamedValues in interface Objects
Parameters:
pc - PageContext
methodName - name of the method
args - Named Arguments for the method
Returns:
return result of the method
Throws:
PageException
See Also:
Objects.callWithNamedValues(railo.runtime.PageContext, java.lang.String, railo.runtime.type.Struct)

get

public Object get(PageContext pc,
                  Collection.Key key,
                  Object defaultValue)
Description copied from interface: Objects
return property

Specified by:
get in interface Objects
Parameters:
pc - PageContext
key - Name of the Property
Returns:
return value of the Property
See Also:
Objects.get(railo.runtime.PageContext, railo.runtime.type.Collection.Key, java.lang.Object)

get

public Object get(PageContext pc,
                  Collection.Key key)
           throws PageException
Description copied from interface: Objects
return property or getter of the ContextCollection

Specified by:
get in interface Objects
Parameters:
pc - PageContext
key - Name of the Property
Returns:
return value of the Property
Throws:
PageException
See Also:
Objects.get(railo.runtime.PageContext, railo.runtime.type.Collection.Key)

isInitalized

public boolean isInitalized()
Specified by:
isInitalized in interface Objects
Returns:
returns if embeded Object is init
See Also:
Objects.isInitalized()

set

public Object set(PageContext pc,
                  String propertyName,
                  Object value)
           throws PageException
Description copied from interface: Objects
sets a property (Data Member) value of the object

Specified by:
set in interface Objects
propertyName - property name to set
value - value to insert
Returns:
value set to property
Throws:
PageException
See Also:
Objects.set(railo.runtime.PageContext, java.lang.String, java.lang.Object)

set

public Object set(PageContext pc,
                  Collection.Key propertyName,
                  Object value)
           throws PageException
Description copied from interface: Objects
sets a property (Data Member) value of the object

Specified by:
set in interface Objects
propertyName - property name to set
value - value to insert
Returns:
value set to property
Throws:
PageException
See Also:
Objects.set(railo.runtime.PageContext, railo.runtime.type.Collection.Key, java.lang.Object)

setEL

public Object setEL(PageContext pc,
                    String propertyName,
                    Object value)
Description copied from interface: Objects
sets a property (Data Member) value of the object

Specified by:
setEL in interface Objects
propertyName - property name to set
value - value to insert
Returns:
value set to property
See Also:
Objects.setEL(railo.runtime.PageContext, java.lang.String, java.lang.Object)

setEL

public Object setEL(PageContext pc,
                    Collection.Key propertyName,
                    Object value)
Description copied from interface: Objects
sets a property (Data Member) value of the object

Specified by:
setEL in interface Objects
propertyName - property name to set
value - value to insert
Returns:
value set to property
See Also:
Objects.setEL(railo.runtime.PageContext, railo.runtime.type.Collection.Key, java.lang.Object)

add

public void add(int index,
                Object element)
See Also:
List.add(int, java.lang.Object)

addAll

public boolean addAll(Collection<? extends Object> c)
See Also:
List.addAll(java.util.Collection)

addAll

public boolean addAll(int index,
                      Collection<? extends Object> c)
See Also:
List.addAll(int, java.util.Collection)

contains

public boolean contains(Object o)
See Also:
List.contains(java.lang.Object)

containsAll

public boolean containsAll(Collection<?> c)
See Also:
List.containsAll(java.util.Collection)

indexOf

public int indexOf(Object o)
See Also:
List.indexOf(java.lang.Object)

lastIndexOf

public int lastIndexOf(Object o)
See Also:
List.lastIndexOf(java.lang.Object)

isEmpty

public boolean isEmpty()
See Also:
List.isEmpty()

removeAll

public boolean removeAll(Collection<?> c)
See Also:
List.removeAll(java.util.Collection)

retainAll

public boolean retainAll(Collection<?> c)
See Also:
List.retainAll(java.util.Collection)

subList

public List<Object> subList(int fromIndex,
                            int toIndex)
See Also:
List.subList(int, int)

toArray

public Object[] toArray()
See Also:
List.toArray()

toArray

public Object[] toArray(Object[] trg)
See Also:
java.util.List#toArray(T[])

equals

public boolean equals(Object obj)
Overrides:
equals in class Object

toDebugColumn

public QueryColumnPro toDebugColumn()
Specified by:
toDebugColumn in interface QueryColumnPro


Copyright © 2012 Railo