Package pulse.properties
Class Flag
- java.lang.Object
-
- pulse.properties.Flag
-
- All Implemented Interfaces:
Serializable
,Property
public class Flag extends Object implements Property
AFlag
is aProperty
that has atype
represented by aNumericPropertyKeyword
, aboolean value
, and aString
with a short abbreviation describing the type of this flag (this is usually defined by the correspondingNumericProperty
).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Flag(Flag f)
Flag(NumericPropertyKeyword type)
Creates aFlag
with the typetype
.Flag(NumericPropertyKeyword type, boolean flag)
Flag(NumericProperty property, boolean value)
Creates aFlag
with the following pre-specified parameters: typetype
, short descriptionabbreviations
, andvalue
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
abbreviation(boolean addHtmlTags)
static List<Flag>
allFlags()
List of all possibleFlag
s that can be used in finding the reverse solution of the heat conduction problems.boolean
attemptUpdate(Object value)
static List<NumericPropertyKeyword>
convert(List<Flag> flags)
A static method for converting enabled flags to aList
ofNumericPropertyKeyword
s.Flag
derive(boolean value)
Creates a newFlag
object based on thisFlag
, but with a differentvalue
.boolean
equals(Object o)
String
getDescriptor(boolean addHtmlTags)
Creates a short description for the GUI.NumericPropertyKeyword
getType()
Returns the type of thisFlag
.Object
getValue()
The value for thisProperty
is aboolean
.Object
identifier()
static List<Flag>
selectActive(List<Flag> flags)
void
setAbbreviation(String abbreviation)
void
setValue(boolean value)
String
toString()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface pulse.properties.Property
formattedOutput
-
-
-
-
Constructor Detail
-
Flag
public Flag(NumericPropertyKeyword type)
Creates aFlag
with the typetype
. The defaultvalue
is set tofalse
.- Parameters:
type
- theNumericPropertyKeyword
associated with thisFlag
-
Flag
public Flag(Flag f)
-
Flag
public Flag(NumericPropertyKeyword type, boolean flag)
-
Flag
public Flag(NumericProperty property, boolean value)
Creates aFlag
with the following pre-specified parameters: typetype
, short descriptionabbreviations
, andvalue
.- Parameters:
property
- theNumericProperty
parameter containing theNumericPropertyKeyword
identifiervalue
- theboolean
value of thisflag
-
-
Method Detail
-
convert
public static List<NumericPropertyKeyword> convert(List<Flag> flags)
A static method for converting enabled flags to aList
ofNumericPropertyKeyword
s. Each keyword in this list corresponds to an enabled flag in theflags
List
.- Parameters:
flags
- the list of flags that needs to be analysed- Returns:
- a list of
NumericPropertyKeyword
s corresponding to enabledflag
s.
-
allFlags
public static List<Flag> allFlags()
List of all possibleFlag
s that can be used in finding the reverse solution of the heat conduction problems. Includes all flags that correspond toNumericPropert
ies satisfyingp.isOptimisable() = true
. The default value of the flag is set top.isDefaultSearchVariable()
-- based on the information contained in theNumericProperty.xml
file.- Returns:
- a
List
of all possibleFlag
s
-
getType
public NumericPropertyKeyword getType()
Returns the type of thisFlag
.- Returns:
- a
NumericPropertyKeyword
representing the type of thisFlag
.
-
derive
public Flag derive(boolean value)
Creates a newFlag
object based on thisFlag
, but with a differentvalue
.- Parameters:
value
- eithertrue
orfalse
- Returns:
- a
Flag
that replicates thetype
andabbreviation
of thisFlag
, but sets a newvalue
-
getDescriptor
public String getDescriptor(boolean addHtmlTags)
Creates a short description for the GUI.- Specified by:
getDescriptor
in interfaceProperty
- Parameters:
addHtmlTags
- iftrue
, adds the 'html' tags at both ends of the descriptorString
.- Returns:
- a
String
, with or without 'html' tags, describing thisProperty
-
getValue
public Object getValue()
The value for thisProperty
is aboolean
.
-
setValue
public void setValue(boolean value)
-
abbreviation
public String abbreviation(boolean addHtmlTags)
-
setAbbreviation
public void setAbbreviation(String abbreviation)
-
identifier
public Object identifier()
- Specified by:
identifier
in interfaceProperty
-
attemptUpdate
public boolean attemptUpdate(Object value)
- Specified by:
attemptUpdate
in interfaceProperty
-
-