Enum UriType

    • Enum Constant Detail

      • URI0

        public static final UriType URI0
        Service document
      • URI1

        public static final UriType URI1
        Entity set
      • URI2

        public static final UriType URI2
        Entity set with key predicate
      • URI3

        public static final UriType URI3
        Complex property of an entity
      • URI4

        public static final UriType URI4
        Simple property of a complex property of an entity
      • URI5

        public static final UriType URI5
        Simple property of an entity
      • URI6A

        public static final UriType URI6A
        Navigation property of an entity with target multiplicity '1' or '0..1'
      • URI6B

        public static final UriType URI6B
        Navigation property of an entity with target multiplicity '*'
      • URI7A

        public static final UriType URI7A
        Link to a single entity
      • URI7B

        public static final UriType URI7B
        Link to multiple entities
      • URI8

        public static final UriType URI8
        Metadata document
      • URI9

        public static final UriType URI9
        Batch request
      • URI10

        public static final UriType URI10
        Function import returning a single instance of an entity type
      • URI11

        public static final UriType URI11
        Function import returning a collection of complex-type instances
      • URI12

        public static final UriType URI12
        Function import returning a single instance of a complex type
      • URI13

        public static final UriType URI13
        Function import returning a collection of primitive-type instances
      • URI14

        public static final UriType URI14
        Function import returning a single instance of a primitive type
      • URI15

        public static final UriType URI15
        Count of an entity set
      • URI16

        public static final UriType URI16
        Count of a single entity
      • URI17

        public static final UriType URI17
        Media resource of an entity
      • URI50A

        public static final UriType URI50A
        Count of link to a single entity
      • URI50B

        public static final UriType URI50B
        Count of links to multiple entities
    • Method Detail

      • values

        public static UriType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (UriType c : UriType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static UriType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null