James Moger
2011-04-20 45c0d6ed8c9c3afc4d09200358ee2d53f06023e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * Created on Dec 11, 2007
 */
package com.codecommit.wicket;
 
import java.io.Serializable;
 
/**
 * @author Daniel Spiewak
 */
public enum MarkerType implements Serializable {
    ARROW("a"),
    CROSS("c"),
    DIAMOND("d"),
    CIRCLE("o"),
    SQUARE("s"),
    
    VERTICAL_TO_DATA("v"),
    VERTICAL_TO_TOP("V"),
    HORIZONTAL_ACROSS("h"),
    
    X("x");
    
    private final String rendering;
    
    private MarkerType(String rendering) {
        this.rendering = rendering;
    }
    
    public String getRendering() {
        return rendering;
    }
}