public abstract class BuildTimeConfig extends Object
Constructor and Description |
---|
BuildTimeConfig() |
Modifier and Type | Method and Description |
---|---|
abstract boolean |
getBooleanProperty(String name)
Return a property of type boolean
|
abstract boolean |
getBooleanProperty(String name,
boolean dflt)
Return a property of type boolean, with default.
|
abstract int |
getIntProperty(String name)
Return a property of type int
|
abstract int |
getIntProperty(String name,
int dflt)
Return a property of type String, with default.
|
abstract String |
getPlanName() |
abstract String |
getStringProperty(String name)
Return a property of type String
|
abstract String |
getStringProperty(String name,
String dflt)
Return a property of type String, with default.
|
public BuildTimeConfig()
public abstract String getPlanName()
public abstract String getStringProperty(String name)
name
- The name of the propertypublic abstract String getStringProperty(String name, String dflt)
name
- The name of the propertydflt
- Default valuepublic abstract int getIntProperty(String name)
name
- The name of the propertypublic abstract int getIntProperty(String name, int dflt)
name
- The name of the propertydflt
- Default valuepublic abstract boolean getBooleanProperty(String name)
name
- The name of the propertypublic abstract boolean getBooleanProperty(String name, boolean dflt)
name
- The name of the propertydflt
- Default value