模块  java.desktop
软件包  java.awt

Class Insets

    • 字段汇总

      字段  
      变量和类型 字段 描述
      int bottom
      从底部插入。
      int left
      从左边插入。
      int right
      从右边插入。
      int top
      从顶部插入。
    • 构造方法摘要

      构造方法  
      构造器 描述
      Insets​(int top, int left, int bottom, int right)
      使用指定的top,left,bottom和right insets创建并初始化一个新的 Insets对象。
    • 字段详细信息

      • top

        public int top
        从顶部插入。 此值将添加到矩形的顶部,以生成Top的新位置。
        另请参见:
        clone()
      • left

        public int left
        从左边插入。 此值将添加到矩形的左侧,以生成左边缘的新位置。
        另请参见:
        clone()
      • bottom

        public int bottom
        从底部插入。 从矩形的底部减去该值,以产生底部的新位置。
        另请参见:
        clone()
      • right

        public int right
        从右边插入。 从矩形的右侧减去此值,以产生右边缘的新位置。
        另请参见:
        clone()
    • 构造方法详细信息

      • Insets

        public Insets​(int top,
                      int left,
                      int bottom,
                      int right)
        使用指定的top,left,bottom和right insets创建并初始化一个新的 Insets对象。
        参数
        top - 从顶部开始的插图。
        left - 左起插图。
        bottom - 从底部开始插入。
        right - 右边的插图。
    • 方法详细信息

      • set

        public void set​(int top,
                        int left,
                        int bottom,
                        int right)
        将顶部,左侧,底部和右侧设置为指定的值
        参数
        top - 从顶部开始的插图。
        left - 左起插图。
        bottom - 从底部开始插入。
        right - 右边插图。
        从以下版本开始:
        1.5
      • equals

        public boolean equals​(Object obj)
        检查两个insets对象是否相等。 的两个实例Insets都是平等的,如果字段的四个整数值topleftbottomright都是平等的。
        重写:
        equalsObject
        参数
        obj - 要与之比较的参考对象。
        结果
        true如果两个插图相等; 否则false
        从以下版本开始:
        1.1
        另请参见:
        Object.hashCode()HashMap
      • toString

        public String toString()
        返回此Insets对象的字符串表示形式。 此方法仅用于调试目的,返回字符串的内容和格式可能因实现而异。 返回的字符串可能为空,但可能不是null
        重写:
        toStringObject
        结果
        Insets对象的字符串表示形式。
      • clone

        public Object clone()
        创建此对象的副本。
        重写:
        cloneObject
        结果
        Insets对象的副本。
        另请参见:
        Cloneable