Package com.mongodb
Class MongoNamespace
java.lang.Object
com.mongodb.MongoNamespace
Deprecated.
Usage of this API is not supported in AEM as a Cloud Service.
A MongoDB namespace, which includes a database name and collection name.
- Since:
- 3.0
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionMongoNamespace
(String fullName) Deprecated.Construct an instance for the given full name.MongoNamespace
(String databaseName, String collectionName) Deprecated.Construct an instance from the given database name and collection name. -
Method Summary
Modifier and TypeMethodDescriptionstatic void
checkCollectionNameValidity
(String collectionName) Deprecated.Check the validity of the given collection name.static void
checkDatabaseNameValidity
(String databaseName) Deprecated.Check the validity of the given database name.boolean
Deprecated.Deprecated.Gets the collection name.Deprecated.Gets the database name.Deprecated.Gets the full name, which is the database name and the collection name, separated by a period.int
hashCode()
Deprecated.toString()
Deprecated.Returns the standard MongoDB representation of a namespace, which is<database>.<collection>
.
-
Field Details
-
COMMAND_COLLECTION_NAME
Deprecated.- See Also:
-
-
Constructor Details
-
MongoNamespace
Deprecated.Construct an instance for the given full name. The database name is the string preceding the first"."
character.- Parameters:
fullName
- the non-null full namespace- See Also:
-
MongoNamespace
public MongoNamespace(@BsonProperty("db") String databaseName, @BsonProperty("coll") String collectionName) Deprecated.Construct an instance from the given database name and collection name.- Parameters:
databaseName
- the valid database namecollectionName
- the valid collection name- See Also:
-
-
Method Details
-
checkDatabaseNameValidity
Deprecated.Check the validity of the given database name. A valid database name is non-null, non-empty, and does not contain any of the following characters:'\0', '/', '\\', ' ', '"', '.'
. The server may impose additional restrictions on database names.- Parameters:
databaseName
- the database name- Throws:
IllegalArgumentException
- if the database name is invalid- Since:
- 3.4
-
checkCollectionNameValidity
Deprecated.Check the validity of the given collection name. A valid collection name is non-null and non-empty. The server may impose additional restrictions on collection names.- Parameters:
collectionName
- the collection name- Throws:
IllegalArgumentException
- if the collection name is invalid- Since:
- 3.4
-
getDatabaseName
Deprecated.Gets the database name.- Returns:
- the database name
-
getCollectionName
Deprecated.Gets the collection name.- Returns:
- the collection name
-
getFullName
Deprecated.Gets the full name, which is the database name and the collection name, separated by a period.- Returns:
- the full name
-
equals
Deprecated. -
toString
Deprecated.Returns the standard MongoDB representation of a namespace, which is<database>.<collection>
. -
hashCode
public int hashCode()Deprecated.
-