📄 checkcharshowmode.java
字号:
// Decompiled by DJ v3.7.7.81 Copyright 2004 Atanas Neshkov Date: 2007-11-23 16:17:23
// Home Page : http://members.fortunecity.com/neshkov/dj.html - Check often for new version!
// Decompiler options: packimports(3)
// Source File Name: CheckCharShowMode.java
package com.bokai.barcodes;
public class CheckCharShowMode
{
public CheckCharShowMode()
{
}
public static int fromString(String s, int i)
{
String s1 = s.toLowerCase();
if(s1.equals("show"))
return 1;
if(s1.equals("hide"))
return 2;
if(s1.equals("auto"))
return 0;
else
return i;
}
public static String toString(int i)
{
switch(i)
{
case 1: // '\001'
return "show";
case 2: // '\002'
return "hide";
case 0: // '\0'
default:
return "auto";
}
}
public static final int auto = 0;
public static final int show = 1;
public static final int hide = 2;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -