Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/Function.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/Function.java72
1 files changed, 36 insertions, 36 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/Function.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/Function.java
index c939e206779..54519156213 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/Function.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/Function.java
@@ -1,36 +1,36 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * 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:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.framework.core.enums;
-
-import org.eclipse.osee.framework.core.exception.OseeCoreException;
-
-/**
- * @author Megumi Telles
- */
-public enum Function {
-
- BRANCH_COMMIT,
- CHANGE_REPORT,
- CREATE_BRANCH,
- PURGE_BRANCH,
- UPDATE_BRANCH_TYPE,
- UPDATE_BRANCH_STATE,
- UPDATE_ARCHIVE_STATE;
-
- public static Function fromString(String toMatch) throws OseeCoreException {
- for (Function function : Function.values()) {
- if (function.name().equalsIgnoreCase(toMatch)) {
- return function;
- }
- }
- throw new OseeCoreException(String.format("Invalid name - Function [%s] was not found ", toMatch));
- }
-}
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 Boeing.
+ * 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:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.framework.core.enums;
+
+import org.eclipse.osee.framework.core.exception.OseeCoreException;
+
+/**
+ * @author Megumi Telles
+ */
+public enum Function {
+
+ BRANCH_COMMIT,
+ CHANGE_REPORT,
+ CREATE_BRANCH,
+ PURGE_BRANCH,
+ UPDATE_BRANCH_TYPE,
+ UPDATE_BRANCH_STATE,
+ UPDATE_ARCHIVE_STATE;
+
+ public static Function fromString(String toMatch) throws OseeCoreException {
+ for (Function function : Function.values()) {
+ if (function.name().equalsIgnoreCase(toMatch)) {
+ return function;
+ }
+ }
+ throw new OseeCoreException(String.format("Invalid name - Function [%s] was not found ", toMatch));
+ }
+}

Back to the top