Angular JS – Directive Example
Angular JS Directive is an extension of HTML tags. It helps the developer to use custom tags and provides reusability. We can define and implement custom tags and custom directive., which helps...
Learn Java/J2EE with simple examples
Angular JS Directive is an extension of HTML tags. It helps the developer to use custom tags and provides reusability. We can define and implement custom tags and custom directive., which helps...
This example provides the usage of following components in angular -js., in a simple example. The following example provides the details of all the below components, so we can use it for...
Angular JS is a UI framework maintained by Google, helps to separate the model, view and Controller(MVC) components in front end UI. It clearly separates client side execution from the application logic....
BlockingQueue is a thread-safe queue where we can enqueue on one end of queue, and dequeue on another end of queue., All BlockingQueue implementions on array or linked queues are thread-safe implementations....
BlockingDeque is an extended implementation of queue where we can enqueue or dequeue on both ends of the queue. All BlockingDeque implementions on array or linked queues are thread-safe implementations. Below is...
Encoding/Decoding is the method of representing an data, to a different format so that data can be transferred through the network or web. Encoder usually converts the data into web representation and...
A Java Class Object needs to serialized if we need to store or transfer with the state values. For any IO operations or network operations usually the java class objects needs to...
Encryption is process of encoding meaningful information using mathematical algorithms using a standard key, so that only authorised parties can only decode/decrypt it. Authorised parties usually shares the secret keys each other...
Hashtable is an implementation for storing/processing list of objects using a hashkey and buckets. Hashtable has default load capacity of 11, where it will create default 11 buckets if not provided in...
Map is another important key interface in Java present in java.util package. Map contains list of objects associated with a key., for quick retrieval.Each Key is tied to one object i.e., every...
Recent Comments