- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.koolearn.klibrary.core.options.ZLIntegerRangeOption.<init>()
方法的一些代码示例,展示了ZLIntegerRangeOption.<init>()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZLIntegerRangeOption.<init>()
方法的具体详情如下:
包路径:com.koolearn.klibrary.core.options.ZLIntegerRangeOption
类名称:ZLIntegerRangeOption
方法名:<init>
暂无
代码示例来源:origin: ydcx/KooReader
private TapZoneMap(String name) {
Name = name;
myOptionGroupName = "TapZones:" + name;
myHeight = new ZLIntegerRangeOption(myOptionGroupName, "Height", 2, 5, 3);
myWidth = new ZLIntegerRangeOption(myOptionGroupName, "Width", 2, 5, 3);
final ZLFile mapFile = ZLFile.createFileByPath(
"default/tapzones/" + name.toLowerCase() + ".xml"
);
XmlUtil.parseQuietly(mapFile, new Reader());
}
代码示例来源:origin: Jiangzqts/EpubRead
private TapZoneMap(String name) {
Name = name;
myOptionGroupName = "TapZones:" + name;
myHeight = new ZLIntegerRangeOption(myOptionGroupName, "Height", 2, 5, 3);
myWidth = new ZLIntegerRangeOption(myOptionGroupName, "Width", 2, 5, 3);
final ZLFile mapFile = ZLFile.createFileByPath(
"default/tapzones/" + name.toLowerCase() + ".xml"
);
XmlUtil.parseQuietly(mapFile, new Reader());
}
代码示例来源:origin: ydcx/KooReader
public ViewOptions() {
final ZLibrary zlibrary = ZLibrary.Instance();
final int dpi = zlibrary.getDisplayDPI();
final int x = zlibrary.getWidthInPixels();
final int y = zlibrary.getHeightInPixels();
final int horMargin = Math.min(dpi / 5, Math.min(x, y) / 30);
TwoColumnView =
new ZLBooleanOption("Options", "TwoColumnView", x * x + y * y >= 42 * dpi * dpi);
LeftMargin =
new ZLIntegerRangeOption("Options", "LeftMargin", 0, 100, horMargin);
RightMargin =
new ZLIntegerRangeOption("Options", "RightMargin", 0, 100, horMargin);
TopMargin =
new ZLIntegerRangeOption("Options", "TopMargin", 0, 100, 0);
BottomMargin =
new ZLIntegerRangeOption("Options", "BottomMargin", 0, 100, 4);
SpaceBetweenColumns =
new ZLIntegerRangeOption("Options", "SpaceBetweenColumns", 0, 300, 3 * horMargin);
ScrollbarType =
new ZLIntegerRangeOption("Options", "ScrollbarType", 0, 4, KooView.SCROLLBAR_SHOW_AS_FOOTER);
FooterHeight =
new ZLIntegerRangeOption("Options", "FooterHeight", 8, dpi / 8, dpi / 12);
ColorProfileName = new ZLStringOption("Options", "ColorProfile", ColorProfile.DAY);
ColorProfileName.setSpecialName("colorProfile");
}
代码示例来源:origin: Jiangzqts/EpubRead
public ViewOptions() {
final ZLibrary zlibrary = ZLibrary.Instance();
final int dpi = zlibrary.getDisplayDPI();
final int x = zlibrary.getWidthInPixels();
final int y = zlibrary.getHeightInPixels();
final int horMargin = Math.min(dpi / 5, Math.min(x, y) / 20);
TwoColumnView =
new ZLBooleanOption("Options", "TwoColumnView", x * x + y * y >= 42 * dpi * dpi);
LeftMargin =
new ZLIntegerRangeOption("Options", "LeftMargin", 0, 100, horMargin);
RightMargin =
new ZLIntegerRangeOption("Options", "RightMargin", 0, 100, horMargin);
TopMargin =
new ZLIntegerRangeOption("Options", "TopMargin", 0, 100, 0);
BottomMargin =
new ZLIntegerRangeOption("Options", "BottomMargin", 0, 100, 4);
SpaceBetweenColumns =
new ZLIntegerRangeOption("Options", "SpaceBetweenColumns", 0, 300, 3 * horMargin);
ScrollbarType =
new ZLIntegerRangeOption("Options", "ScrollbarType", 0, 4, KooView.SCROLLBAR_SHOW_AS_FOOTER);
FooterHeight =
new ZLIntegerRangeOption("Options", "FooterHeight", 8, dpi / 8, dpi / 12);
ColorProfileName = new ZLStringOption("Options", "ColorProfile", ColorProfile.DAY);
ColorProfileName.setSpecialName("colorProfile");
}
代码示例来源:origin: Jiangzqts/EpubRead
public ZLTextBaseStyle(String prefix, String fontFamily, int fontSize) {
super(null, ZLTextHyperlink.NO_LINK);
FontFamilyOption = new ZLStringOption(GROUP, prefix + ":fontFamily", fontFamily);
fontSize = fontSize * ZLibrary.Instance().getDisplayDPI() / 160;
FontSizeOption = new ZLIntegerRangeOption(GROUP, prefix + ":fontSize", 5, Math.max(144, fontSize * 2), fontSize);
BoldOption = new ZLBooleanOption(GROUP, prefix + ":bold", false);
ItalicOption = new ZLBooleanOption(GROUP, prefix + ":italic", false);
UnderlineOption = new ZLBooleanOption(GROUP, prefix + ":underline", false);
StrikeThroughOption = new ZLBooleanOption(GROUP, prefix + ":strikeThrough", false);
AlignmentOption = new ZLIntegerRangeOption(GROUP, prefix + ":alignment", 1, 4, ZLTextAlignmentType.ALIGN_JUSTIFY);
LineSpaceOption = new ZLIntegerRangeOption(GROUP, prefix + ":lineSpacing", 5, 20, 13);//设置行间距
}
代码示例来源:origin: ydcx/KooReader
public ZLTextBaseStyle(String prefix, String fontFamily, int fontSize) {
super(null, ZLTextHyperlink.NO_LINK);
FontFamilyOption = new ZLStringOption(GROUP, prefix + ":fontFamily", fontFamily);
fontSize = fontSize * ZLibrary.Instance().getDisplayDPI() / 160;
FontSizeOption = new ZLIntegerRangeOption(GROUP, prefix + ":fontSize", 5, Math.max(144, fontSize * 2), fontSize);
BoldOption = new ZLBooleanOption(GROUP, prefix + ":bold", false);
ItalicOption = new ZLBooleanOption(GROUP, prefix + ":italic", false);
UnderlineOption = new ZLBooleanOption(GROUP, prefix + ":underline", false);
StrikeThroughOption = new ZLBooleanOption(GROUP, prefix + ":strikeThrough", false);
AlignmentOption = new ZLIntegerRangeOption(GROUP, prefix + ":alignment", 1, 4, ZLTextAlignmentType.ALIGN_JUSTIFY);
LineSpaceOption = new ZLIntegerRangeOption(GROUP, prefix + ":lineSpacing", 5, 20, 12);
}
代码示例来源:origin: ydcx/KooReader
public MiscOptions() {
AllowScreenBrightnessAdjustment =
new ZLBooleanOption("LookNFeel", "AllowScreenBrightnessAdjustment", true);
TextSearchPattern =
new ZLStringOption("TextSearch", "Pattern", "");
EnableDoubleTap =
new ZLBooleanOption("Options", "EnableDoubleTap", false);
NavigateAllWords =
new ZLBooleanOption("Options", "NavigateAllWords", false);
WordTappingAction =
new ZLEnumOption<WordTappingActionEnum>("Options", "WordTappingAction", WordTappingActionEnum.startSelecting);
ToastFontSizePercent =
new ZLIntegerRangeOption("Options", "ToastFontSizePercent", 25, 100, 90);
ShowFootnoteToast =
new ZLEnumOption<FootnoteToastEnum>("Options", "ShowFootnoteToast", FootnoteToastEnum.footnotesAndSuperscripts);
FootnoteToastDuration =
new ZLEnumOption<DurationEnum>("Options", "FootnoteToastDuration", DurationEnum.duration5);
}
}
代码示例来源:origin: Jiangzqts/EpubRead
public MiscOptions() {
AllowScreenBrightnessAdjustment =
new ZLBooleanOption("LookNFeel", "AllowScreenBrightnessAdjustment", true);
TextSearchPattern =
new ZLStringOption("TextSearch", "Pattern", "");
EnableDoubleTap =
new ZLBooleanOption("Options", "EnableDoubleTap", false);
NavigateAllWords =
new ZLBooleanOption("Options", "NavigateAllWords", false);
WordTappingAction =
new ZLEnumOption<WordTappingActionEnum>("Options", "WordTappingAction", WordTappingActionEnum.startSelecting);
ToastFontSizePercent =
new ZLIntegerRangeOption("Options", "ToastFontSizePercent", 25, 100, 90);
ShowFootnoteToast =
new ZLEnumOption<FootnoteToastEnum>("Options", "ShowFootnoteToast", FootnoteToastEnum.footnotesAndSuperscripts);
FootnoteToastDuration =
new ZLEnumOption<DurationEnum>("Options", "FootnoteToastDuration", DurationEnum.duration5);
}
}
代码示例来源:origin: Jiangzqts/EpubRead
public void showToast(final SuperActivityToast toast) {
hideToast();
myToast = toast;
// TODO: avoid this hack (accessing text style via option)
final int dpi = getZLibrary().getDisplayDPI();
final int defaultFontSize = dpi * 18 / 160;
final int fontSize = new ZLIntegerOption("Style", "Base:fontSize", defaultFontSize).getValue();
final int percent = new ZLIntegerRangeOption("Options", "ToastFontSizePercent", 25, 100, 90).getValue();
final int dpFontSize = fontSize * 160 * percent / dpi / 100;
toast.setTextSize(dpFontSize);
toast.setButtonTextSize(dpFontSize * 7 / 8);
final String fontFamily =
new ZLStringOption("Style", "Base:fontFamily", "sans-serif").getValue();
// toast.setTypeface(AndroidFontUtil.systemTypeface(fontFamily, false, false));
runOnUiThread(new Runnable() {
public void run() {
toast.show();
}
});
}
/* ------ SUPER TOAST ------ */
代码示例来源:origin: ydcx/KooReader
public void showToast(final SuperActivityToast toast) {
hideToast();
myToast = toast;
// TODO: avoid this hack (accessing text style via option)
final int dpi = getZLibrary().getDisplayDPI();
final int defaultFontSize = dpi * 18 / 160;
final int fontSize = new ZLIntegerOption("Style", "Base:fontSize", defaultFontSize).getValue();
final int percent = new ZLIntegerRangeOption("Options", "ToastFontSizePercent", 25, 100, 90).getValue();
final int dpFontSize = fontSize * 160 * percent / dpi / 100;
toast.setTextSize(dpFontSize);
toast.setButtonTextSize(dpFontSize * 7 / 8);
final String fontFamily =
new ZLStringOption("Style", "Base:fontFamily", "sans-serif").getValue();
// toast.setTypeface(AndroidFontUtil.systemTypeface(fontFamily, false, false));
runOnUiThread(new Runnable() {
public void run() {
toast.show();
}
});
}
/* ------ SUPER TOAST ------ */
我经常使用 var options = options || {} 作为默认为空对象的方式。它通常用于初始化选项对象,以防它未在函数调用的参数中传递。 问题是我在几个地方(博客文章、源代码)读到opt
我是Python中Rust的新手。这是我学习Rust的第四天。 在第一个问题Type casting for Option type之后,我有一个跟语法match和所有权概念有关的后续问题。 首先,我
我正在学习 Ray Wenderlich。我遇到了闭包语法错误。我想知道 Xcode 提示是什么意思? Xcode 报告如下: /Users/.../FlickrPhotosViewControlle
使用 Python 编写命令行界面 (CLI) 时 click library , 是否可以定义例如三个选项,其中仅当第一个(可选)未设置时才需要第二个和第三个选项? 我的用例是一个登录系统,它允许我
我有一个这样的 JPA 查询。 PersonRepository.java public Optional> findByStatus(int status); 人员服务.java System.ou
我遇到了很多地方,我有类似的东西 def f(s: String): Option[Long] = ... def g(l: Long): IO[Option[Wibble]] = ... val a
我有一个results: List[Future[Option[T]]]其中包含(并行)计算。 我想获得第一个非None尽快出结果,或者返回None如果所有计算都返回 None . 目前,我正在这样做
我正在尝试加载一个简单的 Listbox组件来自 @headlessui/react . 选择.tsx type Option = { id: number name: string
如何将Future[Option[Future[Option[X]]]]转换为Future[Option[X]]? 如果它是 TraversableOnce 而不是 Option 我会使用 Futur
Haskell、Rust 等语言提供了一个 Maybe 或 Option 类型。即使在 Java 中,也有一个 Optional 现在打字。 为简单起见,我将在剩下的问题中将此类型称为“选项类型”。
当我尝试在 SQL 中存储一个 XML 而不是一个空元素时,SQL 只是更改它并仅使用一个元素标签来存储它。例如,要存储的 XML 是: ROGER 然后Sql存起来就好了
使用这个非常好的命令行解析器 Argo(仅 header C++ 库)我遇到了一个小问题。请参阅:https://github.com/phforest/Argo Argo 返回:'Error: Un
我是来自 Java 背景的 Scala 新手,目前对考虑 Option[T] 的最佳实践感到困惑. 我觉得用 Option.map只是更实用和美观,但这不是说服其他人的好理由。有时, isEmpty
这个问题在这里已经有了答案: Chaining Optionals in Java 8 (9 个回答) Optional orElse Optional in Java (6 个回答) Functio
Optional::stream如果存在,则返回一个包含该值的 Stream,否则返回一个空流。所以对于 Stream> optionals , optionals.flatMap(Optional:
我使用箭头键作为输入,在 printf 菜单中上下移动 printf 箭头(“==>”)。 我正在使用一个函数来计算箭头应该在的位置,并使用 switch case 和 printf("\n==>")
这个问题在这里已经有了答案: What does the construct x = x || y mean? (12 个答案) 关闭 9 年前。 如我的问题标题所述,我最近偶然发现了这个变量声明:
这个问题在这里已经有了答案: BackboneJS: What is options || (options = {}); in Backbone source code (1 个回答) 关闭 8
我有这个简单的语法: word = Word(alphanums + '_') with_stmt = Suppress('with') + OneOrMore(Group(word('key') +
使用 Cucumber 和 SitePrism 编写测试,我在页面上有以下 HTML... Select a Status Active Product Inactive Prod
我是一名优秀的程序员,十分优秀!