1 package com.loribel.commons.abstraction;
2
3 /***
4 * Abstraction of a Enum String Selector.
5 */
6 public interface GB_EnumStringSelector
7 extends
8 GB_Selector
9 {
10 /***
11 * Available types to use with this interval.
12 */
13 public static final class TYPE
14 {
15 public static final int NONE = 0;
16 public static final int INCLUDE = 1;
17 public static final int EXCLUDE = 2;
18 }
19
20 /***
21 * Returns the values to include or to exclude.
22 */
23 String[] getValues();
24
25 }