当前位置: 首页>>代码示例>>Java>>正文


Java HashUtilities.hashCode方法代码示例

本文整理汇总了Java中org.jfree.chart.HashUtilities.hashCode方法的典型用法代码示例。如果您正苦于以下问题:Java HashUtilities.hashCode方法的具体用法?Java HashUtilities.hashCode怎么用?Java HashUtilities.hashCode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.jfree.chart.HashUtilities的用法示例。


在下文中一共展示了HashUtilities.hashCode方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: hashCode

import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
 * Returns a hash code for this instance.
 * 
 * @return A hash code.
 */
@Override
public int hashCode() {
	int hash = 37;
	hash = HashUtilities.hashCode(hash, this.g1);
	hash = HashUtilities.hashCode(hash, this.g2);
	hash = HashUtilities.hashCode(hash, this.g3);
	return hash;
}
 
开发者ID:transwarpio,项目名称:rapidminer,代码行数:14,代码来源:RapidXYBarPainter.java

示例2: hashCode

import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
 * Returns a hash code for this instance.
 *
 * @return A hash code.
 */
@Override
public int hashCode() {
    int result = HashUtilities.hashCode(193, this.fillPaint);
    result = HashUtilities.hashCode(result, this.highlightPaint);
    result = HashUtilities.hashCode(result, this.outlinePaint);
    result = HashUtilities.hashCode(result, this.outlineStroke);
    result = HashUtilities.hashCode(result, this.rotateX);
    result = HashUtilities.hashCode(result, this.rotateY);
    result = HashUtilities.hashCode(result, this.size);
    return result;
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:17,代码来源:MeterNeedle.java

示例3: hashCode

import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
 * Returns a hash code for this instance.
 *
 * @return A hash code.
 */
@Override
public int hashCode() {
    int result = 127;
    result = HashUtilities.hashCode(result, this.labelFormat);
    result = HashUtilities.hashCode(result, this.nullValueString);
    result = HashUtilities.hashCode(result, this.dateFormat);
    result = HashUtilities.hashCode(result, this.numberFormat);
    result = HashUtilities.hashCode(result, this.percentFormat);
    return result;
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:16,代码来源:AbstractCategoryItemLabelGenerator.java

示例4: hashCode

import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
 * Returns a hash code for this instance.
 *
 * @return A hash code.
 */
@Override
public int hashCode() {
    int result = 127;
    result = HashUtilities.hashCode(result, this.labelFormat);
    result = HashUtilities.hashCode(result, this.numberFormat);
    result = HashUtilities.hashCode(result, this.percentFormat);
    return result;
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:14,代码来源:AbstractPieItemLabelGenerator.java

示例5: hashCode

import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
 * Returns a hash code for this instance.
 *
 * @return A hash code.
 */
@Override
public int hashCode() {
    int result = 29;
    result = HashUtilities.hashCode(result, this.a);
    result = HashUtilities.hashCode(result, this.b);
    return result;
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:13,代码来源:PowerFunction2D.java

示例6: hashCode

import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
 * Returns a hash code for this instance.
 *
 * @return A hash code.
 */
@Override
public int hashCode() {
    int h = super.hashCode();
    h = HashUtilities.hashCode(h, this.zFormat);
    h = HashUtilities.hashCode(h, this.zDateFormat);
    return h;
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:13,代码来源:BubbleXYItemLabelGenerator.java

示例7: hashCode

import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
 * Returns a hash code for this instance.
 *
 * @return A hash code.
 */
@Override
public int hashCode() {
    int result = 37;
    result = HashUtilities.hashCode(result, this.toolTipText);
    result = HashUtilities.hashCode(result, this.urlText);
    return result;
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:13,代码来源:ChartEntity.java

示例8: hashCode

import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
 * Returns a hash code for this instance.
 *
 * @return A hash code.
 */
@Override
public int hashCode() {
    int hash = 7;
    hash = HashUtilities.hashCode(hash, this.lowerBound);
    hash = HashUtilities.hashCode(hash, this.upperBound);
    hash = 43 * hash + this.alpha;
    return hash;
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:14,代码来源:GrayPaintScale.java

示例9: hashCode

import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
 * Returns a hashcode for the renderer.
 *
 * @return The hashcode.
 */
@Override
public int hashCode() {
    int result = 193;
    result = HashUtilities.hashCode(result, this.seriesVisibleList);
    result = HashUtilities.hashCode(result, this.baseSeriesVisible);
    result = HashUtilities.hashCode(result, this.seriesVisibleInLegendList);
    result = HashUtilities.hashCode(result, this.baseSeriesVisibleInLegend);
    result = HashUtilities.hashCode(result, this.paintList);
    result = HashUtilities.hashCode(result, this.basePaint);
    result = HashUtilities.hashCode(result, this.fillPaintList);
    result = HashUtilities.hashCode(result, this.baseFillPaint);
    result = HashUtilities.hashCode(result, this.outlinePaintList);
    result = HashUtilities.hashCode(result, this.baseOutlinePaint);
    result = HashUtilities.hashCode(result, this.strokeList);
    result = HashUtilities.hashCode(result, this.baseStroke);
    result = HashUtilities.hashCode(result, this.outlineStrokeList);
    result = HashUtilities.hashCode(result, this.baseOutlineStroke);
    // shapeList
    // baseShape
    result = HashUtilities.hashCode(result, this.itemLabelsVisibleList);
    result = HashUtilities.hashCode(result, this.baseItemLabelsVisible);
    // itemLabelFontList
    // baseItemLabelFont
    // itemLabelPaintList
    // baseItemLabelPaint
    // positiveItemLabelPositionList
    // basePositiveItemLabelPosition
    // negativeItemLabelPositionList
    // baseNegativeItemLabelPosition
    // itemLabelAnchorOffset
    // createEntityList
    // baseCreateEntities
    return result;
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:40,代码来源:AbstractRenderer.java

示例10: hashCode

import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
 * Returns a hash code for this instance.
 *
 * @return A hash code.
 */
@Override
public int hashCode() {
    int result = super.hashCode();
    result = HashUtilities.hashCode(result, this.plotArea);
    result = HashUtilities.hashCode(result, this.plotLines);
    result = HashUtilities.hashCode(result, this.plotShapes);
    result = HashUtilities.hashCode(result, this.useFillPaint);
    return result;
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:15,代码来源:XYAreaRenderer.java

示例11: hashCode

import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
 * Returns a hash code for this instance.
 *
 * @return A hash code.
 */
@Override
public int hashCode() {
    int hash = 37;
    hash = HashUtilities.hashCode(hash, this.g1);
    hash = HashUtilities.hashCode(hash, this.g2);
    hash = HashUtilities.hashCode(hash, this.g3);
    return hash;
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:14,代码来源:GradientXYBarPainter.java

示例12: hashCode

import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
 * Returns a hash code for this instance.
 *
 * @return A hash code.
 */
@Override
public int hashCode() {
    int hash = 5;
    hash = HashUtilities.hashCode(hash, this.autoWidth);
    hash = HashUtilities.hashCode(hash, this.intervalPositionFactor);
    hash = HashUtilities.hashCode(hash, this.fixedIntervalWidth);
    return hash;
}
 
开发者ID:nick-paul,项目名称:aya-lang,代码行数:14,代码来源:IntervalXYDelegate.java

示例13: hashCode

import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
 * Returns a hash code for this instance.
 * 
 * @return The hash code.
 */
@Override
public int hashCode() {
    int hash = HashUtilities.hashCode(17, this.shadowSize);
    hash = HashUtilities.hashCode(hash, this.shadowColor);
    hash = HashUtilities.hashCode(hash, this.shadowOpacity);
    hash = HashUtilities.hashCode(hash, this.distance);
    hash = HashUtilities.hashCode(hash, this.angle);
    return hash;
}
 
开发者ID:nick-paul,项目名称:aya-lang,代码行数:15,代码来源:DefaultShadowGenerator.java

示例14: hashCode

import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
 * Returns a hash code for this instance.
 * 
 * @return A hash code.
 */
@Override
public int hashCode() {
    int result = 127;
    result = HashUtilities.hashCode(result, this.dateFormatter);
    result = HashUtilities.hashCode(result, this.numberFormatter);
    return result;
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:13,代码来源:HighLowItemLabelGenerator.java

示例15: hashCode

import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
 * Returns a hash code for this instance.
 *
 * @return A hash code.
 */
@Override
public int hashCode() {
    int result = 23;
    result = HashUtilities.hashCode(result, this.visible);
    return result;
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:12,代码来源:AbstractDialLayer.java


注:本文中的org.jfree.chart.HashUtilities.hashCode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。