public interface GlobalVariableCollection
Title: Fabric Repository Framework
Description: Defines a collection containing all Global Variables.
Copyright: Copyright (c) 2009
Company: StreamScape Technologies
Modifier and Type | Method and Description |
---|---|
boolean |
existsLiteralPool(java.lang.String poolName)
Checks if the specified literal pool exists.
|
boolean |
existsVariable(java.lang.String qualifiedName)
Checks if the specified variable exists.
|
boolean |
existsVariable(java.lang.String poolName,
java.lang.String variableName)
Checks if the specified variable exists in the specified literal pool.
|
java.util.List |
getLiteralPoolVariables(java.lang.String poolName)
Returns a sorted list of variables from the specified literal pool.
|
java.lang.String |
getVariable(java.lang.String qualifiedName)
Returns a value of the specified variable.
|
java.lang.String |
getVariable(java.lang.String poolName,
java.lang.String variableName)
Returns a value of the specified variable contained in the specified literal pool.
|
java.util.List |
listLiteralPools()
Returns a sorted list of literal pools.
|
java.util.List |
listLiteralPoolVariables(java.lang.String poolName)
Returns a sorted list of variable names from the specified literal pool.
|
boolean existsLiteralPool(java.lang.String poolName)
poolName
- the name of the pool.true
if the specified pool exists, false
otherwise.java.util.List listLiteralPools()
java.util.List listLiteralPoolVariables(java.lang.String poolName) throws UnresolvedVariableException
poolName
- the name of the pool.UnresolvedVariableException
- if the corresponding pool does not exist.java.util.List getLiteralPoolVariables(java.lang.String poolName) throws UnresolvedVariableException
poolName
- the name of the pool.UnresolvedVariableException
- if the corresponding pool does not exist.boolean existsVariable(java.lang.String qualifiedName) throws UnresolvedVariableException
qualifiedName
- the fully qualified name of the variable.true
if the specified variable exists, false
otherwise.UnresolvedVariableException
- if the specified name has invalid format or the corresponding literal pool does not exist.boolean existsVariable(java.lang.String poolName, java.lang.String variableName) throws UnresolvedVariableException
poolName
- the name of the pool containing the variable.variableName
- the name of the variable.true
if the specified variable exists, false
otherwise.UnresolvedVariableException
- if the specified pool does not exist.java.lang.String getVariable(java.lang.String qualifiedName) throws UnresolvedVariableException
qualifiedName
- the fully qualified name of the variable.UnresolvedVariableException
- if the specified name has invalid format or the variable does not exist.java.lang.String getVariable(java.lang.String poolName, java.lang.String variableName) throws UnresolvedVariableException
poolName
- the name of the pool containing the variable.variableName
- the name of the variable.UnresolvedVariableException
- if the specified pool does not exist or the variable does not exist.Copyright © 2015-2024 StreamScape Technologies. All rights reserved.