Uses of Interface
com.pyranid.TypedParameter

  • Uses of TypedParameter in com.pyranid

    Methods in com.pyranid that return TypedParameter
    Modifier and Type
    Method
    Description
    static @NonNull TypedParameter
    Parameters.arrayOf(@NonNull Class<?> elementType, @Nullable Object array)
    Acquires a parameter of array type, preserving element type information so it is accessible at runtime.
    static <E> @NonNull TypedParameter
    Parameters.arrayOf(@NonNull Class<E> elementType, E @Nullable [] array)
    Acquires a parameter of array type, preserving element type information so it is accessible at runtime.
    static <E> @NonNull TypedParameter
    Parameters.listOf(@NonNull Class<E> elementType, @Nullable List<E> list)
    Acquires a parameter of type List, preserving type information so it is accessible at runtime.
    static <K,V> @NonNull TypedParameter
    Parameters.mapOf(@NonNull Class<K> keyType, @NonNull Class<V> valueType, @Nullable Map<K,V> map)
    Acquires a parameter of type Map, preserving key and value type information so they are accessible at runtime.
    static <E> @NonNull TypedParameter
    Parameters.setOf(@NonNull Class<E> elementType, @Nullable Set<E> set)
    Acquires a parameter of type Set, preserving type information so it is accessible at runtime.