aboutsummaryrefslogtreecommitdiff
path: root/docs/java-programming-guide.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/java-programming-guide.md')
-rw-r--r--docs/java-programming-guide.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/java-programming-guide.md b/docs/java-programming-guide.md
index 8ebc2b14ca..188ca4995e 100644
--- a/docs/java-programming-guide.md
+++ b/docs/java-programming-guide.md
@@ -72,6 +72,11 @@ class has a single abstract method, `call()`, that must be implemented.
<tr><td>Function2&lt;T1, T2, R&gt;</td><td>T1, T2 =&gt; R (function of two arguments)</td></tr>
</table>
+## Storage Levels
+
+RDD [storage level](scala-programming-guide.html#rdd-persistence) constants, such as `MEMORY_AND_DISK`, are
+declared in the [spark.api.java.StorageLevels](api/core/index.html#spark.api.java.StorageLevels) class.
+
# Other Features