blob: df73148d20da48d0cce082eeca82ebc63c7f1242 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Luis Carlos Moreira da Costa.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Luis Carlos Moreira da Costa (tcljava at gmail dot com) - initial API and implementation
*******************************************************************************/
package org.mihalis.opal.dynamictablecolumns;
/**
* DynamicLengthMeasure.
*/
public enum DynamicLengthMeasure {
/** The pixel. */
PIXEL("px"), /** The percentage. */
PERCENTAGE("%");
/** The id. */
private String id;
/**
* Dynamic Length measure.
*
* @param id String
*/
private DynamicLengthMeasure(final String id) {
this.id = id;
}
/**
* Dynamic Length Measure.
*
* @param id String
* @return LengthMeasure
*/
public static DynamicLengthMeasure fromId(final String id) {
for (final DynamicLengthMeasure measure : DynamicLengthMeasure.values()) {
if (measure.getId().equals(id)) {
return measure;
}
}
return null;
}
/**
* Get id.
*
* @return String
*/
public String getId() {
return this.id;
}
}