public class MbProperty
extends java.lang.Object
getProperties()
method of MbConfigObject.Modifier and Type | Method and Description |
---|---|
boolean |
isComplex()
Returns true if this property is a complex property, or false
if it is a simple property
Simple properties are
Boolean
Long
Double
String
com.ibm.broker.plugin.MbTime
com.ibm.broker.plugin.MbDate
com.ibm.broker.plugin.MbTimestamp
com.ibm.broker.plugin.MbInterval
byte[]
bitSet
|
java.lang.String |
name()
Returns the name of the property as a string
|
int |
numberOfColumns()
Returns the number of columns this property has.
|
int |
numberOfRows()
Returns the number of rows this property has.
|
java.lang.Object |
value()
Returns the value of the property as a java object.
|
java.lang.Object |
value(int row,
int column)
Returns the value at the given row and column number for a
complex property.
|
java.lang.Object |
value(int row,
java.lang.String columnName)
Returns the value at the given row and column number for a
complex property.
|
java.lang.String |
valueAsString()
Returns a string representation of the property as a string
|
public java.lang.String name() throws MbException
MbException
public java.lang.Object value() throws MbException
MbException
public java.lang.Object value(int row, int column) throws MbException
row
- The row number (indexed from zero)column
- The column number (indexed from zero)MbException
public java.lang.Object value(int row, java.lang.String columnName) throws MbException
row
- The row number (indexed from zero)columnName
- The name of the columnMbException
public java.lang.String valueAsString() throws MbException
MbException
public boolean isComplex()
public int numberOfRows()
MbException
public int numberOfColumns()