Class TestSettings

  • All Implemented Interfaces:
    Settings

    public class TestSettings
    extends java.lang.Object
    implements Settings
    • Constructor Summary

      Constructors 
      Constructor Description
      TestSettings()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getString​(java.lang.String key)
      Returns the property as a string Matching on key is case sensitive
      java.lang.String[] getStringArray​(java.lang.String key)
      Returns the property as a an array Returns an empty array if no property is found for this key Matching on key is case sensitive
      Settings setValue​(java.lang.String key, java.lang.String value)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • TestSettings

        public TestSettings()
    • Method Detail

      • setValue

        public Settings setValue​(java.lang.String key,
                                 java.lang.String value)
      • getString

        @CheckForNull
        public java.lang.String getString​(java.lang.String key)
        Description copied from interface: Settings
        Returns the property as a string Matching on key is case sensitive
        Specified by:
        getString in interface Settings
      • getStringArray

        public java.lang.String[] getStringArray​(java.lang.String key)
        Description copied from interface: Settings
        Returns the property as a an array Returns an empty array if no property is found for this key Matching on key is case sensitive
        Specified by:
        getStringArray in interface Settings