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()StringgetName()StringgetSimpleValue()booleanhasListValue()booleanhasSimpleValue()voidsetListValue(List<String> listValue)voidsetName(String name)voidsetSimpleValue(String simpleValue)StringtoString()
-
-
-
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()
-
-