All Categories
 
Java Character isLetterOrDigit Example

Character class isLetterOrDigit method example. This example shows you how to use isLetterOrDigit method. Method checks if the specified character is a letter or digit or not and return boolean true or false. A character is a letter or digit if Character.isLetter(char ch) or Character.isDigit(char ch) returns true for the character.

 
Java Package toString Example

 Package class toString method example. This example shows you how to use toString method. This method Returns the string representation of this Package.

 



 
Java Character isLetter Example

Character class isLetter method example. This example shows you how to use isLetter method. Method checks if specified character is a letter or not and return boolean true or false. A character may be letter if character is UPPERCASE_LETTER or LOWERCASE_LETTER or TITLECASE_LETTER or MODIFIER_LETTER or OTHER_LETTER means not all letters have case.

 
Java Package isSealed Example

Package class isSealed method example. This example shows you how to use isSealed method. This method Returns true if this package is sealed.



 
Java Character isJavaLetterOrDigit Example

Character class isJavaLetterOrDigit method example. This example shows you how to use isJavaLetterOrDigit method.This is static method and Deprecated method, replaced by isJavaIdentifierStart(char).

 
Java Character isIdentifierIgnorable Example

Character class isIdentifierIgnorable method example. This example shows you how to use isIdentifierIgnorable method.Method checks if the specified character is as an ignorable character or not and return boolean true or false.

 
Java Package isCompatibleWith Example

Package class isCompatibleWith method example. This example shows you how to use isCompatibleWith method. This method Compare this package's specification version with a desired version.



 
Java Character isJavaIdentifierStart Example

Character class isJavaIdentifierStart method example. This example shows you how to use isJavaIdentifierStart method.Method checks if specified character is permissible as the first character in a Java identifier or not and return boolean true or false. If any of following are true then character method returns true otherwise false.

 
Java Character isJavaIdentifierPart Example

Character class isJavaIdentifierPart method example. This example shows you how to use isJavaIdentifierPart method.Method checks if specified character is part of a Java identifier or not and return boolean true or false.  If any of following are true then character method returns true otherwise false.

 
Java Package hashCode Example

Package class hashCode method example. This example shows you how to use hashCode method. This method Return the hash code computed from the package name.



 
Java Character isISOControl Example

Character class isISOControl method example. This example shows you how to use isISOControl method.Method checks if the specified character is an ISO control character or not and return boolean true or false. ISO control character range is '\u0000' through '\u001F' or '\u007F' through '\u009F'.

 
Java Package getSpecificationVersion Example

 Package class getSpecificationVersion method example. This example shows you how to use getSpecificationVersion method. This method Returns the version number of the specification that this package implements.

 
Java Character isJavaLetter Example

Character class isJavaLetter method example. This example shows you how to use isJavaLetter method.This is static method and Deprecated method, replaced by isJavaIdentifierStart(char).

 
Java Package getSpecificationVendor Example

Package class getSpecificationVendor method example. This example shows you how to use getSpecificationVendor method. This method   Return the name of the organization, vendor, or company that owns and maintains the specification of the classes that implement this package.

 
Java Package getSpecificationTitle Example

Package class getSpecificationTitle method example. This example shows you how to use getSpecificationTitle method. This method Return the title of the specification that this package implements.



 
Java Package getPackages Example

Package class getPackages  method example. This example shows you how to use getPackages  method. This method  Get all the packages currently known for the caller's ClassLoader  instance.



 
Java Package getPackage Example

Package class getPackage method example. This example shows you how to use getPackage method. This method  Find a package by name in the callers ClassLoader instance

 
Java Package getName Example

Package class getName method example. This example shows you how to use getName method. This method Return the name of the package.

 
Java Throwable tostring Example

Throwable class toString method example. This example shows you how to use toString method.
public String toString()
Returns a short description of this throwable. The result is the concatenation of: * the name of the class of this object

 
Java Throwable getStackTrace Example

Throwable class getStackTrace method example. This example shows you how to use getStackTrace method.
public String getLocalizedMessage()
Creates a localized description of this throwable. Subclasses may override this method in order to produce a locale-specific message. For subclasses that do not override this method, the default implementation returns the same result as getMessage().

 
Java Double valueOf(String s) Example

Double class valueOf(String s) method example. This example shows you how to use valueOf(String s) method. This method Returns a Double object holding the double value represented by the argument string s.

 
Java Double valueOf(double d) Example

 Double class valueOf(double d)  method example. This example shows you how to use valueOf(double d)  method. This method Returns a Double instance representing the specified double value.

 
Java Double toString(double d) Example

Double class toString(double d) method example. This example shows you how to use toString(double d) method. This method Returns a string representation of the double argument

 
Java Double toString Example

Double class toString  method example. This example shows you how to use toString method. This method  Returns a string representation of this Double object.

 
Java Double toHexString Example

Double class toHexString  method example. This example shows you how to use toHexString  method. This method  Returns a hexadecimal string representation of the double argument.

 
Java Double shortValue Example

Double class shortValue method example. This example shows you how to use shortValue method. This method  Returns the value of this Double as a short (by casting to a short).

 
Java Double parseDouble(String s) Example

Double class parseDouble(String s) method example. This example shows you how to use parseDouble(String s) method. This method Returns a new double initialized to the value represented by the specified String

 
Java Double longValue Example

Double class longValue method example. This example shows you how to use longValue method. This method  Returns the value of the Double as a long (by casting to type long).



 
Java Double longBitsToDouble Example

Double class longBitsToDouble method example. This example shows you how to use longBitsToDouble method. This method Returns the double value corresponding to a given bit representation.

 
Java Double isNaN(double v)Example

 Double class isNaN(double v) method example. This example shows you how to use isNaN(double v) method. This method Returns true if the specified number is a Not-a-Number (NaN) value, false otherwise



 
 1    2    3    4    5    6    7    8    9    10    11    12    13    14    15    16    17    18    19    20    21    22    23    24    25    26    27    28    29    30    31    32    33    34    35    36    37    38    39    40    41    42    43    44    45    46    47    48    49    50    51    52    53    54    55    56    57    58   [59]    60    61    62    63    64    65    66    67    68    69    70    71    72    73    74    75    76    77    78    79    80    81    82    83    84    85    86    87    88    89    90    91    92    93    94    95    96    97    98    99    100    101    102    103    104    105    106    107    108    109    110    111    112    113    114    115    116    117    118    119    120    121    122    123    124    125    126    127    128    129    130    131    132    133    134    135    136    137    138    139    140    141    142    143    144    145    146    147    148    149    150    151    152    153    154    155    156    157    158    159    160    161    162    163    164    165    166    167    168    169    170    171    172    173    174    175    176    177    178    179    180    181    182    183    184    185    186    187    188    189    190    191    192    193    194    195    196    197    198    199    200    201    202    203    204    205    206    207    208    209    210    211    212    213    214    215    216    217    218    219    220    221    222    223    224    225    226    227    228    229    230    231    232    233    234    235    236    237    238    239    240    241    242    243    244    245    246    247    248    249    250    251    252    253    254    255    256    257    258    259    260    261    262    263    264    265    266    267    268    269    270    271    272    273    274    275    276    277    278    279    280    281    282    283    284    285    286    287    288    289    290    291    292    293    294    295    296    297    298    299    300    301    302    303    304    305    306    307    308    309    310    311    312    313    314    315    316    317    318    319    320    321    322    323    324    325    326    327    328    329    330    331    332    333    334    335    336    337    338    339    340    341    342    343    344    345    346    347    348    349    350    351    352    353    354    355    356    357    358    359    360    361    362    363    364    365    366    367    368    369    370    371    372    373    374    375    376    377    378    379    380    381    382    383    384    385    386    387    388    389    390    391    392    393    394    395    396    397    398    399    400    401    402    403    404    405    406    407    408    409    410    411    412    413    414    415    416    417    418    419    420    421    422    423    424    425    426    427    428    429    430    431    432    433    434    435    436    437    438    439    440  
 
 
 
 
 

HOME | COPYRIGHT | CONTACT US