Package org.eclipse.emf.cdo.security
Enum PatternStyle
- java.lang.Object
- 
- java.lang.Enum<PatternStyle>
- 
- org.eclipse.emf.cdo.security.PatternStyle
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<PatternStyle>,- org.eclipse.emf.common.util.Enumerator
 
 public enum PatternStyle extends java.lang.Enum<PatternStyle> implements org.eclipse.emf.common.util.Enumerator A representation of the literals of the enumeration 'PatternStyle', and utility methods for working with them.- Since:
- 4.3
- See Also:
- SecurityPackage.getPatternStyle()
- Generated
- Model
 
- 
- 
Field SummaryFields Modifier and Type Field Description static intANT_VALUEThe 'ANT' literal value.static intEXACT_VALUEThe 'EXACT' literal value.static intREGEX_VALUEThe 'REGEX' literal value.static intTREE_VALUEThe 'TREE' literal value.static java.util.List<PatternStyle>VALUESA public read-only list of all the 'Pattern Style' enumerators.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PatternStyleget(int value)Returns the 'Pattern Style' literal with the specified integer value.static PatternStyleget(java.lang.String literal)Returns the 'Pattern Style' literal with the specified literal value.static PatternStylegetByName(java.lang.String name)Returns the 'Pattern Style' literal with the specified name.java.lang.StringgetLiteral()java.lang.StringgetName()intgetValue()java.lang.StringtoString()Returns the literal value of the enumerator, which is its string representation.static PatternStylevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PatternStyle[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
EXACTpublic static final PatternStyle EXACT The 'EXACT' literal object.- See Also:
- EXACT_VALUE
- Generated
- Ordered
 
 - 
TREEpublic static final PatternStyle TREE The 'TREE' literal object.- See Also:
- TREE_VALUE
- Generated
- Ordered
 
 - 
ANTpublic static final PatternStyle ANT The 'ANT' literal object.- See Also:
- ANT_VALUE
- Generated
- Ordered
 
 - 
REGEXpublic static final PatternStyle REGEX The 'REGEX' literal object.- See Also:
- REGEX_VALUE
- Generated
- Ordered
 
 
- 
 - 
Field Detail- 
EXACT_VALUEpublic static final int EXACT_VALUE The 'EXACT' literal value.If the meaning of 'EXACT' literal object isn't clear, there really should be more of a description here... - See Also:
- EXACT, Constant Field Values
- Generated
- Model
- Ordered
 
 - 
TREE_VALUEpublic static final int TREE_VALUE The 'TREE' literal value.If the meaning of 'TREE' literal object isn't clear, there really should be more of a description here... - See Also:
- TREE, Constant Field Values
- Generated
- Model
- Ordered
 
 - 
ANT_VALUEpublic static final int ANT_VALUE The 'ANT' literal value.If the meaning of 'ANT' literal object isn't clear, there really should be more of a description here... - See Also:
- ANT, Constant Field Values
- Generated
- Model
- Ordered
 
 - 
REGEX_VALUEpublic static final int REGEX_VALUE The 'REGEX' literal value.If the meaning of 'Regex' literal object isn't clear, there really should be more of a description here... - See Also:
- REGEX, Constant Field Values
- Generated
- Model
- Ordered
 
 - 
VALUESpublic static final java.util.List<PatternStyle> VALUES A public read-only list of all the 'Pattern Style' enumerators.- Generated
 
 
- 
 - 
Method Detail- 
valuespublic static PatternStyle[] 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 (PatternStyle c : PatternStyle.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static PatternStyle 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 name
- java.lang.NullPointerException- if the argument is null
 
 - 
getpublic static PatternStyle get(java.lang.String literal) Returns the 'Pattern Style' literal with the specified literal value.- Parameters:
- literal- the literal.
- Returns:
- the matching enumerator or null.
- Generated
 
 - 
getByNamepublic static PatternStyle getByName(java.lang.String name) Returns the 'Pattern Style' literal with the specified name.- Parameters:
- name- the name.
- Returns:
- the matching enumerator or null.
- Generated
 
 - 
getpublic static PatternStyle get(int value) Returns the 'Pattern Style' literal with the specified integer value.- Parameters:
- value- the integer value.
- Returns:
- the matching enumerator or null.
- Generated
 
 - 
getValuepublic int getValue() - Specified by:
- getValuein interface- org.eclipse.emf.common.util.Enumerator
- Generated
 
 - 
getNamepublic java.lang.String getName() - Specified by:
- getNamein interface- org.eclipse.emf.common.util.Enumerator
- Generated
 
 - 
getLiteralpublic java.lang.String getLiteral() - Specified by:
- getLiteralin interface- org.eclipse.emf.common.util.Enumerator
- Generated
 
 - 
toStringpublic java.lang.String toString() Returns the literal value of the enumerator, which is its string representation.- Overrides:
- toStringin class- java.lang.Enum<PatternStyle>
- Generated
 
 
- 
 
-