Category: 11. Java.lang Package

  • UnicodeBlock Class

    The Java Character.UnicodeBlock class is a family of character subsets representing the character blocks in the Unicode specification. Character blocks generally define characters used for a specific script or purpose. Class Declaration Following is the declaration for java.lang.Character.UnicodeBlock class − Class Methods Sr.No. Method & Description 1 forName()This method returns the UnicodeBlock with the given name. 2 of()This method…

  • Subset Class

    The java.lang.Character.Subset class instances represent particular subsets of the Unicode character set. The only family of subsets defined in the Character class is UnicodeBlock. Class Declaration Following is the declaration for java.lang.Character.Subset class − Class Constructors Sr.No. Constructor & Description 1 protected Character.Subset(String name)This constructs a new Subset instance. Learn Java in-depth with real-world projects through our Java certification course. Enroll and…

  • Byte class with Examples

    Introduction The Java Byte class class wraps a value of primitive type byte in an object. An object of type Byte contains a single field whose type is byte. Class Declaration Following is the declaration for java.lang.Byte class − Learn Java in-depth with real-world projects through our Java certification course. Enroll and become a certified expert to boost your career. Field Following…