1 4 package com.tc.properties; 5 6 import java.util.Properties ; 7 8 public interface TCProperties { 9 10 int getInt(String key); 11 12 long getLong(String key); 13 14 boolean getBoolean(String key); 15 16 String getProperty(String key); 17 18 TCProperties getPropertiesFor(String key); 19 20 String getProperty(String key, boolean missingOkay); 21 22 float getFloat(String key); 23 24 Properties addAllPropertiesTo(Properties properties); 25 26 } 27 | Popular Tags |