Class StdCharacteristic
- java.lang.Object
-
- fi.tut.mei.matchmaking.process.interfacemm.model.StdCharacteristic
-
public class StdCharacteristic extends Object
- Author:
- Niko Siltala
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
StdCharacteristic.eStdCharType
Enumeration for the type of this standard characteristic.
-
Constructor Summary
Constructors Constructor Description StdCharacteristic(String gid, String name)
Constructor for StdCharacteristic
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getGid()
String
getName()
String
getOperator()
StdCharacteristic.eStdCharType
getStdCharType()
boolean
isRequired()
void
setName(String name)
void
setOperator(String operator)
void
setRequired(boolean req)
void
setStdCharType(StdCharacteristic.eStdCharType stdCharType)
String
toString()
-
-
-
Method Detail
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name
- the name to set
-
getStdCharType
public StdCharacteristic.eStdCharType getStdCharType()
- Returns:
- the stdCharType
-
setStdCharType
public void setStdCharType(StdCharacteristic.eStdCharType stdCharType)
- Parameters:
stdCharType
- the stdCharType to set
-
isRequired
public boolean isRequired()
- Returns:
- the req
-
setRequired
public void setRequired(boolean req)
- Parameters:
req
- the req to set
-
getOperator
public String getOperator()
- Returns:
- the operator
-
setOperator
public void setOperator(String operator)
- Parameters:
operator
- the operator to set
-
getGid
public String getGid()
- Returns:
- the gid
-
-