Package org.alfresco.repo.dictionary
Class M2NamedValue
- java.lang.Object
-
- org.alfresco.repo.dictionary.M2NamedValue
-
public class M2NamedValue extends Object
Definition of a named value that can be used for property injection.- Author:
- Derek Hulley
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getListValue()
String
getName()
String
getSimpleValue()
boolean
hasListValue()
boolean
hasSimpleValue()
void
setListValue(List<String> listValue)
void
setName(String name)
void
setSimpleValue(String simpleValue)
String
toString()
-
-
-
Method Detail
-
getName
public String getName()
-
getSimpleValue
public String getSimpleValue()
- Returns:
- Returns the raw, unconverted value
-
getListValue
public List<String> getListValue()
- Returns:
- Returns the list of raw, unconverted values
-
setName
public void setName(String name)
-
setSimpleValue
public void setSimpleValue(String simpleValue)
-
hasSimpleValue
public boolean hasSimpleValue()
-
hasListValue
public boolean hasListValue()
-
-