ipropertyreader.java

来自「java 的源代码」· Java 代码 · 共 28 行

JAVA
28
字号
package com.reddragon2046.base.utilities.util;


// Referenced classes of package com.reddragon2046.base.utilities.util:
//            PropertyNotFoundException

public interface IPropertyReader
{

    public abstract String getStringProperty(String s);

    public abstract String getStringPropertyOrDefault(String s, String s1);

    public abstract String getStringPropertyOrFail(String s)
        throws PropertyNotFoundException;

    public abstract String getStringPropertyOrFail(String s, RuntimeException runtimeexception);

    public abstract Integer getIntegerProperty(String s);

    public abstract Integer getIntegerPropertyOrDefault(String s, Integer integer);

    public abstract int getIntegerPropertyOrFail(String s)
        throws PropertyNotFoundException;

    public abstract int getIntegerPropertyOrFail(String s, RuntimeException runtimeexception);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?