public class DriverPropertyInfo
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
java.lang.String[] |
choices
If values are restricted to certain choices, this is the list of valid
ones.
|
java.lang.String |
description
A description of the property, possibly
null . |
java.lang.String |
name
The name of the property.
|
boolean |
required
A flag indicating whether or not a value for this property is required
in order to connect to the database.
|
java.lang.String |
value
This is the value of the property.
|
Constructor and Description |
---|
DriverPropertyInfo(java.lang.String name,
java.lang.String value)
This method initializes a new instance of
DriverPropertyInfo
with the specified name and value. |
public java.lang.String name
public java.lang.String description
null
.public boolean required
public java.lang.String value
public java.lang.String[] choices
null
.public DriverPropertyInfo(java.lang.String name, java.lang.String value)
DriverPropertyInfo
with the specified name and value. All other fields are defaulted.name
- The name of the property.value
- The value to assign to the property.