Package oracle.rules.sdk2.repository
Class DictionaryFQN
java.lang.Object
oracle.rules.sdk2.repository.DictionaryFQN
- All Implemented Interfaces:
Serializable
,Comparable<DictionaryFQN>
The fully qualified name of a rule dictionary.
It consists of the following properties:
- a dictionary package and
- a dictionary name.
Each property must be a Unicode identifier as defined by the
isUnicodeIdentifierStart
and
isUnicodeIdentifierPart
methods in
java.lang.Character
.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDictionaryFQN
(String pkg, String name) Construct a fully qualified name of a dictionary. -
Method Summary
Modifier and TypeMethodDescriptionasPath()
Returns the relative path representation of this fully qualified name.int
compareTo
(DictionaryFQN fqn) Compares this DictionaryFQN with the specified DictionaryFQN.static DictionaryFQN
createDictionaryFQN
(String pkg, String name) Create a fully qualified name of a dictionary.boolean
Indicates whether this DictionaryFQN is equal to another objectgetName()
Returns the name of the dictionaryReturns the dictionary packageint
hashCode()
Returns the hash code for this fully qualified name.static boolean
isNameValid
(String name) Checks if the dictionary name is validstatic boolean
isPackageValid
(String pkg) Checks if the dictionary package is validtoString()
Returns the string representation of this fully qualified name in the form package.name.void
Check validity of this fully qualified name for dictionary access.void
Check validity of this fully qualified name for use withgetNames
.
-
Field Details
-
EXTENSION
The extension used for rule dictionaries. This is used in constructing the relative path used to identify a dictionary in a repository.- See Also:
-
-
Constructor Details
-
DictionaryFQN
Construct a fully qualified name of a dictionary.- Parameters:
pkg
- the dictionary packagename
- the dictionary name
-
-
Method Details
-
createDictionaryFQN
Create a fully qualified name of a dictionary.- Parameters:
pkg
- the dictionary packagename
- the dictionary name- Returns:
- the fully qualified name.
-
asPath
Returns the relative path representation of this fully qualified name. The path includes the extension ".rules" which is appended to the dictionary name. This represents the expected relative path of the dictionary in a file system or other hierarchical store.- Returns:
- the relative path representation of this fully qualified name.
-
toString
Returns the string representation of this fully qualified name in the form package.name. The package may also contain multiple components separated by '.'. -
getPackage
Returns the dictionary package- Returns:
- the dictionary package
-
getName
Returns the name of the dictionary- Returns:
- the dictionary name
-
validateForAccess
Check validity of this fully qualified name for dictionary access.- Throws:
InvalidFQNException
- if this fully qualified name is invalid
-
validateForGetNames
Check validity of this fully qualified name for use withgetNames
.- Throws:
InvalidFQNException
- if this fully qualified name is invalid
-
isPackageValid
Checks if the dictionary package is valid- Parameters:
pkg
- the dictionary package to validate- Returns:
- true if the dictionary package is valid, otherwise false
-
isNameValid
Checks if the dictionary name is valid- Parameters:
name
- the dictionary name to validate- Returns:
- true if the dictionary name is valid, otherwise false
-
compareTo
Compares this DictionaryFQN with the specified DictionaryFQN. The value returned is the Comparable result of the String representations for each.- Specified by:
compareTo
in interfaceComparable<DictionaryFQN>
-
hashCode
public int hashCode()Returns the hash code for this fully qualified name. -
equals
Indicates whether this DictionaryFQN is equal to another object
-