Package dev.amp.validator
Class ParsedValueProperties
- java.lang.Object
-
- dev.amp.validator.ParsedValueProperties
-
public class ParsedValueProperties extends Object
This class creates a map of property specs key by name.- Author:
- nhant01, GeorgeLuo
-
-
Constructor Summary
Constructors Constructor Description ParsedValueProperties(dev.amp.validator.ValidatorProtos.PropertySpecList spec)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcleanup()Clean up reference, improve gc performance.List<String>getMandatoryValuePropertyNames()Returns a list of mandatory property names.Map<String,dev.amp.validator.ValidatorProtos.PropertySpec>getValuePropertyByName()Returns the a map of PropertySpec.
-
-
-
Method Detail
-
getValuePropertyByName
@Nonnull public Map<String,dev.amp.validator.ValidatorProtos.PropertySpec> getValuePropertyByName()
Returns the a map of PropertySpec.- Returns:
- returns a map of PropertySpec.
-
getMandatoryValuePropertyNames
public List<String> getMandatoryValuePropertyNames()
Returns a list of mandatory property names.- Returns:
- returns a list of mandatory property names.
-
cleanup
public void cleanup()
Clean up reference, improve gc performance.
-
-