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
| /*
| * Created on Dec 11, 2007
| */
| package com.codecommit.wicket;
|
| /**
| * @author Daniel Spiewak
| */
| public enum MarkerType {
| 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;
| }
| }
|
|