Package aQute.bnd.osgi
Class Instruction
- java.lang.Object
-
- aQute.bnd.osgi.Instruction
-
public class Instruction extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Instruction.Filter
-
Constructor Summary
Constructors Constructor Description Instruction(java.lang.String input)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
finds(java.lang.String value)
java.lang.String
getInput()
java.lang.String
getLiteral()
java.util.regex.Matcher
getMatcher(java.lang.String value)
java.lang.String
getPattern()
boolean
isAny()
boolean
isDuplicate()
boolean
isLiteral()
boolean
isNegated()
boolean
isOptional()
boolean
matches(java.lang.String value)
void
setOptional()
java.lang.String
toString()
-
-
-
Method Detail
-
matches
public boolean matches(java.lang.String value)
-
isNegated
public boolean isNegated()
-
getPattern
public java.lang.String getPattern()
-
getInput
public java.lang.String getInput()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getMatcher
public java.util.regex.Matcher getMatcher(java.lang.String value)
-
setOptional
public void setOptional()
-
isOptional
public boolean isOptional()
-
isLiteral
public boolean isLiteral()
-
getLiteral
public java.lang.String getLiteral()
-
isDuplicate
public boolean isDuplicate()
-
isAny
public boolean isAny()
-
finds
public boolean finds(java.lang.String value)
-
-