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

📄 axisoptionsrecord.java

📁 Office格式转换代码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
     * Get the maximum category field for the AxisOptions record.     */    public short getMaximumCategory()    {        return field_2_maximumCategory;    }    /**     * Set the maximum category field for the AxisOptions record.     */    public void setMaximumCategory(short field_2_maximumCategory)    {        this.field_2_maximumCategory = field_2_maximumCategory;    }    /**     * Get the major unit value field for the AxisOptions record.     */    public short getMajorUnitValue()    {        return field_3_majorUnitValue;    }    /**     * Set the major unit value field for the AxisOptions record.     */    public void setMajorUnitValue(short field_3_majorUnitValue)    {        this.field_3_majorUnitValue = field_3_majorUnitValue;    }    /**     * Get the major unit field for the AxisOptions record.     */    public short getMajorUnit()    {        return field_4_majorUnit;    }    /**     * Set the major unit field for the AxisOptions record.     */    public void setMajorUnit(short field_4_majorUnit)    {        this.field_4_majorUnit = field_4_majorUnit;    }    /**     * Get the minor unit value field for the AxisOptions record.     */    public short getMinorUnitValue()    {        return field_5_minorUnitValue;    }    /**     * Set the minor unit value field for the AxisOptions record.     */    public void setMinorUnitValue(short field_5_minorUnitValue)    {        this.field_5_minorUnitValue = field_5_minorUnitValue;    }    /**     * Get the minor unit field for the AxisOptions record.     */    public short getMinorUnit()    {        return field_6_minorUnit;    }    /**     * Set the minor unit field for the AxisOptions record.     */    public void setMinorUnit(short field_6_minorUnit)    {        this.field_6_minorUnit = field_6_minorUnit;    }    /**     * Get the base unit field for the AxisOptions record.     */    public short getBaseUnit()    {        return field_7_baseUnit;    }    /**     * Set the base unit field for the AxisOptions record.     */    public void setBaseUnit(short field_7_baseUnit)    {        this.field_7_baseUnit = field_7_baseUnit;    }    /**     * Get the crossing point field for the AxisOptions record.     */    public short getCrossingPoint()    {        return field_8_crossingPoint;    }    /**     * Set the crossing point field for the AxisOptions record.     */    public void setCrossingPoint(short field_8_crossingPoint)    {        this.field_8_crossingPoint = field_8_crossingPoint;    }    /**     * Get the options field for the AxisOptions record.     */    public short getOptions()    {        return field_9_options;    }    /**     * Set the options field for the AxisOptions record.     */    public void setOptions(short field_9_options)    {        this.field_9_options = field_9_options;    }    /**     * Sets the default minimum field value.     * use the default minimum category     */    public void setDefaultMinimum(boolean value)    {        field_9_options = defaultMinimum.setShortBoolean(field_9_options, value);    }    /**     * use the default minimum category     * @return  the default minimum field value.     */    public boolean isDefaultMinimum()    {        return defaultMinimum.isSet(field_9_options);    }    /**     * Sets the default maximum field value.     * use the default maximum category     */    public void setDefaultMaximum(boolean value)    {        field_9_options = defaultMaximum.setShortBoolean(field_9_options, value);    }    /**     * use the default maximum category     * @return  the default maximum field value.     */    public boolean isDefaultMaximum()    {        return defaultMaximum.isSet(field_9_options);    }    /**     * Sets the default major field value.     * use the default major unit     */    public void setDefaultMajor(boolean value)    {        field_9_options = defaultMajor.setShortBoolean(field_9_options, value);    }    /**     * use the default major unit     * @return  the default major field value.     */    public boolean isDefaultMajor()    {        return defaultMajor.isSet(field_9_options);    }    /**     * Sets the default minor unit field value.     * use the default minor unit     */    public void setDefaultMinorUnit(boolean value)    {        field_9_options = defaultMinorUnit.setShortBoolean(field_9_options, value);    }    /**     * use the default minor unit     * @return  the default minor unit field value.     */    public boolean isDefaultMinorUnit()    {        return defaultMinorUnit.isSet(field_9_options);    }    /**     * Sets the isDate field value.     * this is a date axis     */    public void setIsDate(boolean value)    {        field_9_options = isDate.setShortBoolean(field_9_options, value);    }    /**     * this is a date axis     * @return  the isDate field value.     */    public boolean isIsDate()    {        return isDate.isSet(field_9_options);    }    /**     * Sets the default base field value.     * use the default base unit     */    public void setDefaultBase(boolean value)    {        field_9_options = defaultBase.setShortBoolean(field_9_options, value);    }    /**     * use the default base unit     * @return  the default base field value.     */    public boolean isDefaultBase()    {        return defaultBase.isSet(field_9_options);    }    /**     * Sets the default cross field value.     * use the default crossing point     */    public void setDefaultCross(boolean value)    {        field_9_options = defaultCross.setShortBoolean(field_9_options, value);    }    /**     * use the default crossing point     * @return  the default cross field value.     */    public boolean isDefaultCross()    {        return defaultCross.isSet(field_9_options);    }    /**     * Sets the default date settings field value.     * use default date setttings for this axis     */    public void setDefaultDateSettings(boolean value)    {        field_9_options = defaultDateSettings.setShortBoolean(field_9_options, value);    }    /**     * use default date setttings for this axis     * @return  the default date settings field value.     */    public boolean isDefaultDateSettings()    {        return defaultDateSettings.isSet(field_9_options);    }}  // END OF CLASS

⌨️ 快捷键说明

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