From d479253768d296a40b4f699e1de9b03c7146a97a Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Tue, 3 Dec 2013 14:03:28 -0800 Subject: Adding javadocs and Carbonado User Guide --- apidocs/com/amazon/carbonado/AlternateKeys.html | 237 ++++++++++++++++++++++++ 1 file changed, 237 insertions(+) create mode 100644 apidocs/com/amazon/carbonado/AlternateKeys.html (limited to 'apidocs/com/amazon/carbonado/AlternateKeys.html') diff --git a/apidocs/com/amazon/carbonado/AlternateKeys.html b/apidocs/com/amazon/carbonado/AlternateKeys.html new file mode 100644 index 0000000..a9a3ec6 --- /dev/null +++ b/apidocs/com/amazon/carbonado/AlternateKeys.html @@ -0,0 +1,237 @@ + + + + + + +AlternateKeys (Carbonado 1.2.3 API) + + + + + + + +
+ + + + + +
+ + + +
+
com.amazon.carbonado
+

Annotation Type AlternateKeys

+
+
+
+
    +
  • +
    +
    +
    @Documented
    +@Retention(value=RUNTIME)
    +@Target(value=TYPE)
    +public @interface AlternateKeys
    +
    List of alternate keys for a Storable. + +

    Example:

    + @AlternateKeys({
    +     @Key("fullPath")
    +     @Key({"+name", "-parentID"})
    + })
    + @PrimaryKey("ID")
    + public interface FileInfo extends Storable<FileInfo> {
    +     long getID();
    +     void setID(long id);
    +
    +     String getFullPath();
    +     void setFullPath(String path);
    +
    +     String getName();
    +     void setName(String name);
    +
    +     long getParentID();
    +     void setParentID(long id);
    +
    +     ...
    + }
    + 
    +
    Author:
    +
    Brian S O'Neill
    +
    See Also:
    Key
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Optional Element Summary

      + + + + + + + + + + +
      Optional Elements 
      Modifier and TypeOptional Element and Description
      Key[]value +
      A list of Key annotations.
      +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Element Detail

      + + + +
        +
      • +

        value

        +
        public abstract Key[] value
        +
        A list of Key annotations.
        +
        +
        Default:
        +
        {}
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + +

Copyright © 2006-2013 Amazon Technologies, Inc.. All Rights Reserved.

+ + -- cgit v1.2.3