Program to convert Java set of Strings to a Vector in Scala Last Updated : 03 Jan, 2020 Comments Improve Suggest changes Like Article Like Report A java set of Strings can be converted to a Vector in Scala by utilizing toVector method of Java in Scala. Here, you need to import Scala’s JavaConversions object in order to make this conversions work else an error will occur. Now, lets see some examples and then discuss how it works in details. Example:1# Scala // Scala program to convert Java set // to a Vector in Scala // Importing Scala's JavaConversions object import scala.collection.JavaConversions._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating set of Strings in Java val set = new java.util.HashSet[String]() // Adding Strings to the set set.add("Geeks") set.add("for") set.add("Geeks") // Converting set to a Vector val vec= set.toVector // Displays vector println(vec) } } Output: Vector(Geeks, for) Therefore, the resultant output is in same order as stated in the above list and the duplicates are also deleted. Example:2# Scala // Scala program to convert Java set // to a Vector in Scala // Importing Scala's JavaConversions object import scala.collection.JavaConversions._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating set of Strings in Java val set = new java.util.HashSet[String]() // Adding Strings to the set set.add("My") set.add("name is") set.add("Nidhi") // Converting set to a Vector val vec= set.toVector // Displays vector println(vec) } } Output: Vector(Nidhi, My, name is) Here, the stated Strings are not stated in proper order but the resultant output is in proper order. As here strings with more number of words are displayed at last and strings of greater length are displayed at first. Comment More infoAdvertise with us Next Article Program to convert Java set of Strings to a Vector in Scala nidhi1352singh Follow Improve Article Tags : Scala Scala Scala-Method scala-collection Similar Reads Program to convert Java set of Shorts to a Vector in Scala A java set of Shorts can be converted to a Vector in Scala by utilizing toVector method of Java in Scala. Here, we need to import Scalaâs JavaConversions object in order to make this conversions work else an error will occur. Now, lets see some examples and then discuss how it works in details. Exam 2 min read Program to convert Java list of Strings to a Vector in Scala A java list of Strings can be converted to a Vector in Scala by utilizing toVector method of Java in Scala. Here, we need to import Scalaâs JavaConversions object in order to make this conversions work else an error will occur. Now, lets see some examples and then discuss how it works in details. Ex 2 min read Program to convert Java Set of strings to a Traversable in Scala A java Set of strings can be converted to a Traversable collection in Scala by utilizing toTraversable method of Java in Scala. Here, we need to import Scalaâs JavaConversions object in order to make this conversions work. Now, lets see some examples and then discuss how it works in details. Example 2 min read Program to convert Java Set of Strings to a String in Scala A java Set of Strings can be converted to a String in Scala by utilizing toString method of Java in Scala. Here, we need to import Scalaâs JavaConversions object in order to make this conversions work. Now, lets see some examples and then discuss how it works in details. Example:1# Scala // Scala pr 2 min read Program to convert Java Set to a Vector in Scala A java Set can be converted to a Vector in Scala by utilizing toVector method of Java in Scala. Here, we need to import Scalaâs JavaConversions object in order to make this conversions work. Now, lets see some examples and then discuss how it works in details. Example:1# Scala // Scala program to co 2 min read Program to convert Java Set to a String in Scala A java Set can be converted to a String in Scala by utilizing toString method of Java in Scala. Here, we need to import Scalaâs JavaConversions object in order to make this conversions work. Now, lets see some examples and then discuss how it works in details. Example:1# Scala // Scala program to co 2 min read Program to convert Java set of bytes to a Vector in Scala A java set of bytes can be converted to a Vector in Scala by utilizing toVector method of Java in Scala. Here, we need to import Scalaâs JavaConversions object in order to make this conversions work else an error will occur. Now, lets see some examples and then discuss how it works in details. Examp 2 min read Program to convert Java Set of bytes to a String in Scala A java Set of bytes can be converted to a String in Scala by utilizing toString method of Java in Scala. Here, we need to import Scalaâs JavaConversions object in order to make this conversions work. Now, lets see some examples and then discuss how it works in details. Example:1# Scala // Scala prog 1 min read Program to convert Java Set of shorts to a String in Scala A java Set of shorts can be converted to a String in Scala by utilizing toString method of Java in Scala. Here, you need to import Scalaâs JavaConversions object in order to make this conversions work. Now, lets see some examples and then discuss how it works in details. Example:1# Scala // Scala pr 2 min read Program to convert Java set of floats to a Vector in Scala A java set of floats can be converted to a Vector in Scala by utilizing toVector method of Java in Scala. Here, we need to import Scalaâs JavaConversions object in order to make this conversions work else an error will occur. Now, lets see some examples and then discuss how it works in details. Exam 2 min read Like