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

📄 orientation.java

📁 awt图形界面的生成
💻 JAVA
字号:
/**
 * Constants for orientations (and alignments).<p>
 *
 * This class may not be instantiated.
 *
 * @version 1.0, Apr 11 1996
 * @author  David Geary
 */
public class Orientation {
    public static final Orientation BAD    = new Orientation();
    public static final Orientation NORTH  = new Orientation();
    public static final Orientation SOUTH  = new Orientation();
    public static final Orientation EAST   = new Orientation();
    public static final Orientation WEST   = new Orientation();
    public static final Orientation CENTER = new Orientation();
    public static final Orientation TOP    = new Orientation();
    public static final Orientation LEFT   = new Orientation();
    public static final Orientation RIGHT  = new Orientation();
    public static final Orientation BOTTOM = new Orientation();

    public static final Orientation HORIZONTAL = 
        new Orientation();
    public static final Orientation VERTICAL   = 
        new Orientation();

    static public Orientation fromString(String s) {
        Orientation o = BAD;

        if(s.equals("NORTH") || s.equals("north"))    o = NORTH;
        else if(s.equals("SOUTH") || s.equals("south"))    
            o = SOUTH;
        else if(s.equals("EAST")  || s.equals("east"))     
            o = EAST;
        else if(s.equals("WEST")  || s.equals("west"))     
            o = WEST;
        else if(s.equals("CENTER") || s.equals("center"))   
            o = CENTER;
        else if(s.equals("TOP")   || s.equals("top"))      
            o = TOP;
        else if(s.equals("LEFT")  || s.equals("left"))     
            o = LEFT;
        else if(s.equals("RIGHT")  || s.equals("right"))    
            o = RIGHT;
        else if(s.equals("BOTTOM") || s.equals("bottom"))   
            o = BOTTOM;
        else if(s.equals("VERTICAL") || s.equals("vertical")) 
            o = VERTICAL;
        else if(s.equals("HORIZONTAL") || 
                s.equals("horizontal"))
          o = HORIZONTAL;

        return o;
    }
    public String toString() {
        String s = new String();

        if(this == Orientation.NORTH) 
            s = getClass().getName() + "=NORTH";
        else if(this == Orientation.SOUTH)
            s = getClass().getName() + "=SOUTH";
        else if(this == Orientation.EAST)
            s = getClass().getName() + "=EAST";
        else if(this == Orientation.WEST)
            s = getClass().getName() + "=WEST";
        else if(this == Orientation.CENTER)
            s = getClass().getName() + "=CENTER";
        else if(this == Orientation.TOP)
            s = getClass().getName() + "=TOP";
        else if(this == Orientation.LEFT)
            s = getClass().getName() + "=LEFT";
        else if(this == Orientation.RIGHT)
            s = getClass().getName() + "=RIGHT";
        else if(this == Orientation.BOTTOM)
            s = getClass().getName() + "=BOTTOM";
        else if(this == Orientation.HORIZONTAL)
            s = getClass().getName() + "=HORIZONTAL";
        else if(this == Orientation.VERTICAL)
            s = getClass().getName() + "=VERTICAL";
        else if(this == Orientation.BAD)
            s = getClass().getName() + "=BAD";

        return s;
    }
    private Orientation() { }  // Defeat instantiation
}

⌨️ 快捷键说明

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