| 1 39 40 41 package org.krysalis.jcharts.axisChart.customRenderers.axisValue.renderers; 42 43 44 public class ValueLabelPosition { 45 46 public static final ValueLabelPosition ON_TOP= new ValueLabelPosition( 0 ); 48 49 public static final ValueLabelPosition AT_TOP= new ValueLabelPosition( 1 ); 51 52 55 public static final ValueLabelPosition ABOVE_ZERO_LINE= new ValueLabelPosition( 3 ); 57 58 59 public static final ValueLabelPosition AXIS_TOP= new ValueLabelPosition( 4 ); 60 public static final ValueLabelPosition AXIS_BOTTOM= new ValueLabelPosition( 6 ); 62 63 64 private int position; 65 66 67 71 protected ValueLabelPosition( int position ) { 72 this.position= position; 73 } 74 75 76 80 public int getPosition() { 81 return position; 82 } 83 84 85 90 public final boolean equals( ValueLabelPosition valueLabelPosition ) { 91 return ( this.position == valueLabelPosition.position ); 92 } 93 } 94 | Popular Tags |