java.lang.Object | |
↳ | com.microstrategy.web.beans.FeatureArray |
The purpose of this class is to act as a container for an arbitrary list of feature "segments". Each segment is a feature name with an optional exclamation point preceding it. This FeatureArray is evaluated one feature at a time in the various isFeatureAvaiable method implementations.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
static FeatureArray |
getArray(String featureString)
The main entry point for accessing an instance of the
FeatureArray
class. | ||||||||||
String |
getName(int index)
Returns the name of the ith feature in this string.
| ||||||||||
boolean |
getValue(int index)
Returns the value of the ith feature in this string.
| ||||||||||
int |
size()
Returns the size of the
FeatureArray . |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
The main entry point for accessing an instance of the FeatureArray
class. These class are thread-safe and intended to be used in a multithreaded
environment.
featureString | The (single- or multi-valued) feature string that you wish
a FeatureArray instance for. |
---|
FeatureArray
class for the supplied feature string.
Returns the name of the ith feature in this string.
index | A value from 0 to size() -1. |
---|
Returns the value of the ith feature in this string.
index | A value from 0 to size() -1. |
---|