Enum UHFReader.MEMBANK

    • Enum Constant Detail

      • EPC

        public static final UHFReader.MEMBANK EPC
        The EPC membank. Contains CRC, PC and EPC.
      • TID

        public static final UHFReader.MEMBANK TID
        The tag ID of the tag (sometimes contains a unique ID, sometimes only a manufacturer code, depending on the tag type)
      • USR

        public static final UHFReader.MEMBANK USR
        The optional user memory some tags have
      • RES

        public static final UHFReader.MEMBANK RES
        Reserved membank. Contains Kill password and Access password
    • Method Detail

      • values

        public static UHFReader.MEMBANK[] 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 (UHFReader.MEMBANK c : UHFReader.MEMBANK.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static UHFReader.MEMBANK 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