Package com._1c.g5.v8.dt.metadata.common
Enum FoldersAndItemsUse
- java.lang.Object
-
- java.lang.Enum<FoldersAndItemsUse>
-
- com._1c.g5.v8.dt.metadata.common.FoldersAndItemsUse
-
- All Implemented Interfaces:
Serializable
,Comparable<FoldersAndItemsUse>
,org.eclipse.emf.common.util.Enumerator
public enum FoldersAndItemsUse extends Enum<FoldersAndItemsUse> implements org.eclipse.emf.common.util.Enumerator
A representation of the literals of the enumeration 'Folders And Items Use', and utility methods for working with them.- See Also:
CommonPackage.getFoldersAndItemsUse()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FOLDERS
The 'Folders' literal object.FOLDERS_AND_ITEMS
The 'Folders And Items' literal object.ITEMS
The 'Items' literal object.
-
Field Summary
Fields Modifier and Type Field Description static int
FOLDERS_AND_ITEMS_VALUE
The 'Folders And Items' literal value.static int
FOLDERS_VALUE
The 'Folders' literal value.static int
ITEMS_VALUE
The 'Items' literal value.static List<FoldersAndItemsUse>
VALUES
A public read-only list of all the 'Folders And Items Use' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FoldersAndItemsUse
get(int value)
Returns the 'Folders And Items Use' literal with the specified integer value.static FoldersAndItemsUse
get(String literal)
Returns the 'Folders And Items Use' literal with the specified literal value.static FoldersAndItemsUse
getByName(String name)
Returns the 'Folders And Items Use' literal with the specified name.String
getLiteral()
String
getName()
int
getValue()
String
toString()
Returns the literal value of the enumerator, which is its string representation.static FoldersAndItemsUse
valueOf(String name)
Returns the enum constant of this type with the specified name.static FoldersAndItemsUse[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ITEMS
public static final FoldersAndItemsUse ITEMS
The 'Items' literal object.- See Also:
ITEMS_VALUE
-
FOLDERS
public static final FoldersAndItemsUse FOLDERS
The 'Folders' literal object.- See Also:
FOLDERS_VALUE
-
FOLDERS_AND_ITEMS
public static final FoldersAndItemsUse FOLDERS_AND_ITEMS
The 'Folders And Items' literal object.- See Also:
FOLDERS_AND_ITEMS_VALUE
-
-
Field Detail
-
ITEMS_VALUE
public static final int ITEMS_VALUE
The 'Items' literal value.- See Also:
ITEMS
, Constant Field Values
-
FOLDERS_VALUE
public static final int FOLDERS_VALUE
The 'Folders' literal value.- See Also:
FOLDERS
, Constant Field Values
-
FOLDERS_AND_ITEMS_VALUE
public static final int FOLDERS_AND_ITEMS_VALUE
The 'Folders And Items' literal value.- See Also:
FOLDERS_AND_ITEMS
, Constant Field Values
-
VALUES
public static final List<FoldersAndItemsUse> VALUES
A public read-only list of all the 'Folders And Items Use' enumerators.
-
-
Method Detail
-
values
public static FoldersAndItemsUse[] 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 (FoldersAndItemsUse c : FoldersAndItemsUse.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FoldersAndItemsUse valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
get
public static FoldersAndItemsUse get(String literal)
Returns the 'Folders And Items Use' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
public static FoldersAndItemsUse getByName(String name)
Returns the 'Folders And Items Use' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
public static FoldersAndItemsUse get(int value)
Returns the 'Folders And Items Use' literal with the specified integer value.- Parameters:
value
- the integer value.- Returns:
- the matching enumerator or
null
.
-
getValue
public int getValue()
- Specified by:
getValue
in interfaceorg.eclipse.emf.common.util.Enumerator
-
getName
public String getName()
- Specified by:
getName
in interfaceorg.eclipse.emf.common.util.Enumerator
-
getLiteral
public String getLiteral()
- Specified by:
getLiteral
in interfaceorg.eclipse.emf.common.util.Enumerator
-
toString
public String toString()
Returns the literal value of the enumerator, which is its string representation.- Overrides:
toString
in classEnum<FoldersAndItemsUse>
-
-