Package com.iizix.prop
Interface IPropCnrString
- All Known Implementing Classes:
- PlotString
 - public interface IPropCnrStringInterface for a generic string setting for a property container implemented by enum classes with validation support.- Author:
- Christopher Mindus
 
- Method Summary- All Methods Instance Methods Abstract Methods Default Methods - Modifier and Type - Method - Description - java.lang.String- getDefaultValue()Gets the default value when the property is not set.- java.lang.String- getPropName()Returns the name of the property, usually starting with '$'.- default void- validate(PropCnr pc, java.lang.String string)Validates a new string.
 
- Method Detail- getDefaultValue- java.lang.String getDefaultValue() Gets the default value when the property is not set.- Returns:
- The default value, or null for none.
 
 - validate- default void validate(PropCnr pc, java.lang.String string) throws PropValidateException Validates a new string.- Override to provide validation, default doesn't validate. - Parameters:
- pc- The property container that will be set.
- string- The string to validate.
- Throws:
- java.lang.NullPointerException- If the string is null.
- PropValidateException- If the string doesn't validate.
 
 - getPropName- java.lang.String getPropName() Returns the name of the property, usually starting with '$'.