⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ipropertyreader.java

📁 java 的源代码
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -