aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/fasterxml/jackson/databind/PropertyName.java
diff options
context:
space:
mode:
authorTatu Saloranta <tsaloranta@gmail.com>2012-09-09 17:51:22 -0700
committerTatu Saloranta <tsaloranta@gmail.com>2012-09-09 17:51:22 -0700
commit355d9bd0986e43ff84dabdc520ee9fa471559b09 (patch)
tree25ab668ea6499f2545b585955e0efc97a783192f /src/main/java/com/fasterxml/jackson/databind/PropertyName.java
parentfc5705aa736b38145fd8efa74c0b0c03cdc5d492 (diff)
downloadjackson-databind-355d9bd0986e43ff84dabdc520ee9fa471559b09.tar.gz
...
Diffstat (limited to 'src/main/java/com/fasterxml/jackson/databind/PropertyName.java')
-rw-r--r--src/main/java/com/fasterxml/jackson/databind/PropertyName.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/com/fasterxml/jackson/databind/PropertyName.java b/src/main/java/com/fasterxml/jackson/databind/PropertyName.java
index fe31fa8a1..5e12afae0 100644
--- a/src/main/java/com/fasterxml/jackson/databind/PropertyName.java
+++ b/src/main/java/com/fasterxml/jackson/databind/PropertyName.java
@@ -17,11 +17,11 @@ public class PropertyName
public final static PropertyName USE_DEFAULT = new PropertyName("", null);
/**
- * Special placeholder value that indicates that name returned should
- * indicate "do not use" (or "disabled") mode. Exact semantics to use (if any)
- * depend on actual annotation in use.
+ * Special placeholder value that indicates that there is no name associated.
+ * Exact semantics to use (if any) depend on actual annotation in use, but
+ * commonly this value disables behavior for which name would be needed.
*/
- public final static PropertyName DISABLED = new PropertyName(new String("#disabled"), null);
+ public final static PropertyName NO_NAME = new PropertyName(new String("#disabled"), null);
/**
* Basic name of the property.