From 0427ab89f1753a44b30cbc35ce021cbbdc845109 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Thu, 10 Aug 2017 18:52:45 +0300 Subject: fix missing source folder --- .../functions/ArtifactVersionNameFunction.html | 270 ++++++++++++++++++++ .../common/functions/CollectionWrapperFactory.html | 281 +++++++++++++++++++++ .../common/functions/GenericIterableFactory.html | 256 +++++++++++++++++++ .../mods/fml/common/functions/ModIdFunction.html | 270 ++++++++++++++++++++ .../mods/fml/common/functions/ModNameFunction.html | 270 ++++++++++++++++++++ .../fml/common/functions/TypeCastFunction.html | 270 ++++++++++++++++++++ .../mods/fml/common/functions/package-frame.html | 24 ++ .../mods/fml/common/functions/package-summary.html | 151 +++++++++++ .../mods/fml/common/functions/package-tree.html | 131 ++++++++++ 9 files changed, 1923 insertions(+) create mode 100644 javadoc/cpw/mods/fml/common/functions/ArtifactVersionNameFunction.html create mode 100644 javadoc/cpw/mods/fml/common/functions/CollectionWrapperFactory.html create mode 100644 javadoc/cpw/mods/fml/common/functions/GenericIterableFactory.html create mode 100644 javadoc/cpw/mods/fml/common/functions/ModIdFunction.html create mode 100644 javadoc/cpw/mods/fml/common/functions/ModNameFunction.html create mode 100644 javadoc/cpw/mods/fml/common/functions/TypeCastFunction.html create mode 100644 javadoc/cpw/mods/fml/common/functions/package-frame.html create mode 100644 javadoc/cpw/mods/fml/common/functions/package-summary.html create mode 100644 javadoc/cpw/mods/fml/common/functions/package-tree.html (limited to 'javadoc/cpw/mods/fml/common/functions') diff --git a/javadoc/cpw/mods/fml/common/functions/ArtifactVersionNameFunction.html b/javadoc/cpw/mods/fml/common/functions/ArtifactVersionNameFunction.html new file mode 100644 index 0000000..a77b948 --- /dev/null +++ b/javadoc/cpw/mods/fml/common/functions/ArtifactVersionNameFunction.html @@ -0,0 +1,270 @@ + + + + + +ArtifactVersionNameFunction (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.functions
+

Class ArtifactVersionNameFunction

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    com.google.common.base.Function<ArtifactVersion,java.lang.String>
    +
    +
    +
    +
    public class ArtifactVersionNameFunction
    +extends java.lang.Object
    +implements com.google.common.base.Function<ArtifactVersion,java.lang.String>
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.Stringapply(ArtifactVersion v) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
        +
      • + + +

        Methods inherited from interface com.google.common.base.Function

        +equals
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ArtifactVersionNameFunction

        +
        public ArtifactVersionNameFunction()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        apply

        +
        public java.lang.String apply(ArtifactVersion v)
        +
        +
        Specified by:
        +
        apply in interface com.google.common.base.Function<ArtifactVersion,java.lang.String>
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/functions/CollectionWrapperFactory.html b/javadoc/cpw/mods/fml/common/functions/CollectionWrapperFactory.html new file mode 100644 index 0000000..c7929d7 --- /dev/null +++ b/javadoc/cpw/mods/fml/common/functions/CollectionWrapperFactory.html @@ -0,0 +1,281 @@ + + + + + +CollectionWrapperFactory (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.functions
+

Class CollectionWrapperFactory

+
+
+ +
+
    +
  • +
    +
    +
    public class CollectionWrapperFactory
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static <T> java.util.Collection<T>wrap(java.util.Collection coll, + java.lang.Class<T> elementType) +
      Return a read only cast view of the supplied ungeneric collection, based on the element type given
      +
      static <T> java.util.List<T>wrap(java.util.List list, + java.lang.Class<T> elementType) +
      Return a read only cast view of the supplied ungeneric list, based on the element type given
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CollectionWrapperFactory

        +
        public CollectionWrapperFactory()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        wrap

        +
        public static <T> java.util.Collection<T> wrap(java.util.Collection coll,
        +                               java.lang.Class<T> elementType)
        +
        Return a read only cast view of the supplied ungeneric collection, based on the element type given
        +
        Parameters:
        coll - The collection to cast
        elementType - the supertype contained in the collection
        +
        Returns:
        a collection asserting that type relationship
        +
      • +
      + + + +
        +
      • +

        wrap

        +
        public static <T> java.util.List<T> wrap(java.util.List list,
        +                         java.lang.Class<T> elementType)
        +
        Return a read only cast view of the supplied ungeneric list, based on the element type given
        +
        Parameters:
        list - The list to cast
        elementType - the supertype contained in the list
        +
        Returns:
        a list asserting that type relationship
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/functions/GenericIterableFactory.html b/javadoc/cpw/mods/fml/common/functions/GenericIterableFactory.html new file mode 100644 index 0000000..4ec7e2e --- /dev/null +++ b/javadoc/cpw/mods/fml/common/functions/GenericIterableFactory.html @@ -0,0 +1,256 @@ + + + + + +GenericIterableFactory (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.functions
+

Class GenericIterableFactory

+
+
+ +
+
    +
  • +
    +
    +
    public class GenericIterableFactory
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static <T> java.lang.Iterable<T>newCastingIterable(java.lang.Iterable<?> input, + java.lang.Class<T> type) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GenericIterableFactory

        +
        public GenericIterableFactory()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        newCastingIterable

        +
        public static <T> java.lang.Iterable<T> newCastingIterable(java.lang.Iterable<?> input,
        +                                           java.lang.Class<T> type)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/functions/ModIdFunction.html b/javadoc/cpw/mods/fml/common/functions/ModIdFunction.html new file mode 100644 index 0000000..e377b07 --- /dev/null +++ b/javadoc/cpw/mods/fml/common/functions/ModIdFunction.html @@ -0,0 +1,270 @@ + + + + + +ModIdFunction (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.functions
+

Class ModIdFunction

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    com.google.common.base.Function<ModContainer,java.lang.String>
    +
    +
    +
    +
    public final class ModIdFunction
    +extends java.lang.Object
    +implements com.google.common.base.Function<ModContainer,java.lang.String>
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      ModIdFunction() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.Stringapply(ModContainer container) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
        +
      • + + +

        Methods inherited from interface com.google.common.base.Function

        +equals
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ModIdFunction

        +
        public ModIdFunction()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        apply

        +
        public java.lang.String apply(ModContainer container)
        +
        +
        Specified by:
        +
        apply in interface com.google.common.base.Function<ModContainer,java.lang.String>
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/functions/ModNameFunction.html b/javadoc/cpw/mods/fml/common/functions/ModNameFunction.html new file mode 100644 index 0000000..4741f58 --- /dev/null +++ b/javadoc/cpw/mods/fml/common/functions/ModNameFunction.html @@ -0,0 +1,270 @@ + + + + + +ModNameFunction (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.functions
+

Class ModNameFunction

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    com.google.common.base.Function<ModContainer,java.lang.String>
    +
    +
    +
    +
    public class ModNameFunction
    +extends java.lang.Object
    +implements com.google.common.base.Function<ModContainer,java.lang.String>
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      ModNameFunction() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.Stringapply(ModContainer input) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
        +
      • + + +

        Methods inherited from interface com.google.common.base.Function

        +equals
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ModNameFunction

        +
        public ModNameFunction()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        apply

        +
        public java.lang.String apply(ModContainer input)
        +
        +
        Specified by:
        +
        apply in interface com.google.common.base.Function<ModContainer,java.lang.String>
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/functions/TypeCastFunction.html b/javadoc/cpw/mods/fml/common/functions/TypeCastFunction.html new file mode 100644 index 0000000..3a94b27 --- /dev/null +++ b/javadoc/cpw/mods/fml/common/functions/TypeCastFunction.html @@ -0,0 +1,270 @@ + + + + + +TypeCastFunction (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.functions
+

Class TypeCastFunction<T>

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    com.google.common.base.Function<java.lang.Object,T>
    +
    +
    +
    +
    public class TypeCastFunction<T>
    +extends java.lang.Object
    +implements com.google.common.base.Function<java.lang.Object,T>
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      TypeCastFunction(java.lang.Class<T> type) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      Tapply(java.lang.Object input) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
        +
      • + + +

        Methods inherited from interface com.google.common.base.Function

        +equals
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        TypeCastFunction

        +
        public TypeCastFunction(java.lang.Class<T> type)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        apply

        +
        public T apply(java.lang.Object input)
        +
        +
        Specified by:
        +
        apply in interface com.google.common.base.Function<java.lang.Object,T>
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/functions/package-frame.html b/javadoc/cpw/mods/fml/common/functions/package-frame.html new file mode 100644 index 0000000..aa59bfa --- /dev/null +++ b/javadoc/cpw/mods/fml/common/functions/package-frame.html @@ -0,0 +1,24 @@ + + + + + +cpw.mods.fml.common.functions (Forge API) + + + + +

cpw.mods.fml.common.functions

+
+

Classes

+ +
+ + diff --git a/javadoc/cpw/mods/fml/common/functions/package-summary.html b/javadoc/cpw/mods/fml/common/functions/package-summary.html new file mode 100644 index 0000000..dec2995 --- /dev/null +++ b/javadoc/cpw/mods/fml/common/functions/package-summary.html @@ -0,0 +1,151 @@ + + + + + +cpw.mods.fml.common.functions (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Package cpw.mods.fml.common.functions

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/functions/package-tree.html b/javadoc/cpw/mods/fml/common/functions/package-tree.html new file mode 100644 index 0000000..8d5e3a8 --- /dev/null +++ b/javadoc/cpw/mods/fml/common/functions/package-tree.html @@ -0,0 +1,131 @@ + + + + + +cpw.mods.fml.common.functions Class Hierarchy (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package cpw.mods.fml.common.functions

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + -- cgit v1.2.3