blob: 4ce11d3574223e73072ca707d1f40e3f2409d60f [file] [log] [blame]
/*************************************************************************************
* Copyright (c) 2011-2014 Red Hat, Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Fred Bricon / JBoss by Red Hat - Initial implementation.
************************************************************************************/
package org.eclipse.m2e.profiles.core.internal;
/**
* Enum of all possible Profile states :
* <ul>
* <li>Active : the profile is active</li>
* <li>Inactive : the profile is not active</li>
* <li>Disabled : the profile is not active</li>
* </ul>
* @author Fred Bricon
* @since 1.5.0
*/
public enum ProfileState {
Disabled(false),
Inactive(false),
Active(true);
private boolean active;
ProfileState(boolean active) {
this.active = active;
}
/**
* @return true if the Profile is active
*/
public boolean isActive() {
return active;
}
}