View Javadoc
1   package fr.paris.lutece.plugins.forms.business;
2   
3   public enum LogicalOperator {
4   
5   	AND( "and" ),
6       OR( "or" );
7   	
8   	private final String _strLabel;
9   
10  	LogicalOperator(String strLabel) {
11  		this._strLabel = strLabel;
12  	}
13  
14  	public String getLabel() {
15  		return _strLabel;
16  	}
17  	
18  }