Enum LegacyRootFolder
- java.lang.Object
-
- java.lang.Enum<LegacyRootFolder>
-
- com.inductiveautomation.ignition.common.project.resource.adapter.LegacyRootFolder
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LegacyRootFolder>
public enum LegacyRootFolder extends java.lang.Enum<LegacyRootFolder>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NAMED_QUERY
PIPELINE
REPORT
SFC
SR_SCRIPT_PROJECT
SR_SCRIPT_SHARED
VISION_TEMPLATE
WED_DEV
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
exists(java.util.UUID uuid)
static LegacyRootFolder
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LegacyRootFolder[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAMED_QUERY
public static final LegacyRootFolder NAMED_QUERY
-
PIPELINE
public static final LegacyRootFolder PIPELINE
-
REPORT
public static final LegacyRootFolder REPORT
-
SFC
public static final LegacyRootFolder SFC
-
SR_SCRIPT_PROJECT
public static final LegacyRootFolder SR_SCRIPT_PROJECT
-
SR_SCRIPT_SHARED
public static final LegacyRootFolder SR_SCRIPT_SHARED
-
VISION_TEMPLATE
public static final LegacyRootFolder VISION_TEMPLATE
-
WED_DEV
public static final LegacyRootFolder WED_DEV
-
-
Method Detail
-
values
public static LegacyRootFolder[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LegacyRootFolder c : LegacyRootFolder.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LegacyRootFolder valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
exists
public static boolean exists(java.util.UUID uuid)
-
-