Java in a Nutshell, 5th Edition [Electronic resources]

نسخه متنی -صفحه : 1191/ 517
نمايش فراداده

KeyRep.Typejava.security

Java 5.0serializable comparable enum

The constants defined by this enumerated type represent the general types of cryptographic keys: public keys, private keys, and secret keys.

public enum

KeyRep.Type { // Enumerated Constants

SECRET ,

PUBLIC ,

PRIVATE ; // Public Class Methods public static KeyRep.Type

valueOf (String

name ); public static final KeyRep.Type[ ]

values ( ); }

Passed To

KeyRep.KeyRep( )