Package com.mongodb.client.model
Class Field<TExpression>
- java.lang.Object
-
- com.mongodb.client.model.Field<TExpression>
-
- Type Parameters:
TExpression- the type of the value for the new field
@Deprecated(since="2021-05-27") public class Field<TExpression> extends java.lang.ObjectDeprecated.Usage of this API is not supported in AEM as a Cloud Service.Helps define new fields for the $addFields pipeline stage- Since:
- 3.4
-
-
Constructor Summary
Constructors Constructor Description Field(java.lang.String name, TExpression value)Deprecated.Creates a new field definition for use in $addFields pipeline stages
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(java.lang.Object o)Deprecated.java.lang.StringgetName()Deprecated.TExpressiongetValue()Deprecated.inthashCode()Deprecated.java.lang.StringtoString()Deprecated.
-
-
-
Constructor Detail
-
Field
public Field(java.lang.String name, TExpression value)Deprecated.Creates a new field definition for use in $addFields pipeline stages- Parameters:
name- the name of the new fieldvalue- the value of the new field
-
-
Method Detail
-
getName
public java.lang.String getName()
Deprecated.- Returns:
- the name of the new field
-
getValue
public TExpression getValue()
Deprecated.- Returns:
- the value of the new field
-
equals
public boolean equals(java.lang.Object o)
Deprecated.- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toStringin classjava.lang.Object
-
-