static boolean |
UserDirectoryParameter.contains(List<UserDirectoryParameter> parameters,
String name) |
Returns whether the list of user directory parameters contains a user directory parameter whose
name matches the specified name.
|
static byte[] |
UserDirectoryParameter.getBinaryValue(List<UserDirectoryParameter> parameters,
String name) |
Returns the binary value for the user directory parameter with the specified name in the
specified list.
|
static boolean |
UserDirectoryParameter.getBooleanValue(List<UserDirectoryParameter> parameters,
String name) |
Returns the boolean value for the user directory parameter with the specified name in
the specified list.
|
static BigDecimal |
UserDirectoryParameter.getDecimalValue(List<UserDirectoryParameter> parameters,
String name) |
Returns the BigDecimal value for the user directory parameter with the specified name in
the specified list.
|
static double |
UserDirectoryParameter.getDoubleValue(List<UserDirectoryParameter> parameters,
String name) |
Returns the double value for the user directory parameter with the specified name in the
specified list.
|
static int |
UserDirectoryParameter.getIntegerValue(List<UserDirectoryParameter> parameters,
String name) |
Returns the int value for the user directory parameter with the specified name in the
specified list.
|
static long |
UserDirectoryParameter.getLongValue(List<UserDirectoryParameter> parameters,
String name) |
Returns the long value for the user directory parameter with the specified name in the
specified list.
|
static String |
UserDirectoryParameter.getStringValue(List<UserDirectoryParameter> parameters,
String name) |
Returns the String value for the user directory parameter with the specified name in the
specified list.
|
static void |
UserDirectoryParameter.setBinaryValue(List<UserDirectoryParameter> parameters,
String name,
byte[] value) |
Set the binary value for the user directory parameter with the specified name in the specified
list.
|
static void |
UserDirectoryParameter.setBinaryValue(List<UserDirectoryParameter> parameters,
String name,
africa.absa.inception.core.util.BinaryBuffer value) |
Set the binary value for the user directory parameter with the specified name in the specified
list.
|
static void |
UserDirectoryParameter.setDecimalValue(List<UserDirectoryParameter> parameters,
String name,
BigDecimal value) |
Set the BigDecimal value for the user directory parameter with the specified name in the
specified list.
|
static void |
UserDirectoryParameter.setDoubleValue(List<UserDirectoryParameter> parameters,
String name,
double value) |
Set the double value for the user directory parameter with the specified name in the
specified list.
|
static void |
UserDirectoryParameter.setIntegerValue(List<UserDirectoryParameter> parameters,
String name,
int value) |
Set the int value for the user directory parameter with the specified name in the
specified list.
|
static void |
UserDirectoryParameter.setLongValue(List<UserDirectoryParameter> parameters,
String name,
long value) |
Set the long value for the user directory parameter with the specified name in the
specified list.
|
void |
UserDirectory.setParameters(List<UserDirectoryParameter> parameters) |
Set the parameters for the user directory.
|
static void |
UserDirectoryParameter.setStringValue(List<UserDirectoryParameter> parameters,
String name,
String value) |
Set the String value for the user directory parameter with the specified name in the
specified list.
|