The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
59 views

case class and inheritance: how to offer different behaviour

situation: trait Operation { def something: Double } trait OperationPlus { this: A => override def something: Double = x + y } trait OperationMinus { this: A => override def something: ...
0
votes
2answers
53 views

Accessing to methods of case classes

Why I can't access to methods of case class inside method of ordinary class when I initiate case class instance without new keyword? I.e. in the following code I get a compile-time error: case ...
1
vote
1answer
63 views

Matching only some parameters in case classes and not put N place holder for all options

I have my matching: val product = parser next match { case EvElemStart(_, "Product", attrs, _) => Some(parseProduct( parser, attrs )) case _ => readNext() } ...
8
votes
1answer
347 views

How to represent a partial update on case classe in Scala ?

I have the following case class : case class PropositionContent(title:String,content:String) And I would like to represent a partial modification of it as Data. One way would be to create the ...
4
votes
0answers
104 views

How are F#'s Discriminated Unions different from Scala's Case Classes? or are they the same? [duplicate]

I've looked around on the web to find something in scala that could resemble or work like the F# discriminated union but no matter where I look I can't really find anything, except for the case class ...
3
votes
2answers
109 views

Scala 2.10 reflection, how do I extract the field values from a case class

How can I extract the field values from a case class in scala using the new reflection model in scala 2.10? For example, using the below doesn't pull out the field methods def ...
2
votes
3answers
167 views

Scala - how to print case classes like (pretty printed) tree

I'm making a parser with Scala Combinators. It is awesome. What I end up with is a long list of entagled case classes, like: ClassDecl(Complex,List(VarDecl(Real,float), VarDecl(Imag,float))), just ...
2
votes
1answer
74 views

Log parsing strategy using scala

So yesterday I had a logfile which had comma separated entries in a provided log.txt such as follows: entry1.1,entry1.2,entry1.3 entry2.1,entry2,2,entry2.3 .......................... So with much ...
4
votes
1answer
81 views

Can I get a Scala case class definition from an Avro schema definition?

To facilitate working with Avro in Scala, I'd like to define a case class based on the schema stored with a .avro file. I could try: Writing a .scala case class definition by hand. ...
1
vote
3answers
138 views

Scala copy case class with generic type

I have two classes PixelObject, ImageRefObject and some more, but here are just these two classes to simplify things. They all are subclasses of a trait Object that contains an uid. I need universal ...
0
votes
2answers
93 views

Convert Nested Case Classes to Nested Maps in Scala

I have two nested case classes: case class InnerClass(param1: String, param2: String) case class OuterClass(myInt: Int, myInner: InnerClass) val x = OuterClass(11, InnerClass("hello", "world")) ...
2
votes
2answers
82 views

Can I use abstract types in matching of case classes?

Or, in other words: Can I verify with matching if elements in a tuple are of the same case class, despite having different values in theirs fields (arguments)? Is there something equivalent to the ...
1
vote
2answers
128 views

How to share behavior over case classes in scala

Implementing my domain model in scala using case classes I got abstract class Entity { val _id: Option[BSONObjectID] val version: Option[BSONLong] } and several case classes defining the ...
0
votes
0answers
67 views

List all case-classes in package in Scala with scala.reflect

Say, I have a next code: package selap.tests.AbstractLexer abstract class Token case class Num(value:String) extends Token case class BinOp(op:String) extends Token case class Incr(op:String) ...
4
votes
2answers
107 views

Instantiate case class with values to be set for its members

Consider this case class case class sample(val s: String = { /*compiled code*/ }) { val name:String = { /*compiled code*/ } val no:Int = { /*compiled code*/ } } I need to create instance of ...
1
vote
2answers
128 views

How can I use overloaded case class constructors and still use pattern matching?

I was trying to learn pattern matching when I found this example. It seems that case class pattern matching is not working with overloaded case class constructors. case class MyClass(var ...
2
votes
1answer
93 views

How to build a proper namespace in Scala?

I'm new to Scala and right now I'm creating my first enumeration (with case classes to override toString). package views.helper.button abstract sealed class Size(identifier: Option[String]) { ...
2
votes
1answer
131 views

Create common trait for all case classes supporting copy(id=newId) method

I'm trying to do something like that: trait IdentifiableModel[T] { self: { def copy(id: ObjectId): T } => val id: ObjectId } I've found some other related questions trying to do similar ...
0
votes
3answers
69 views

Iterate trough List of case objects replace NaNs and write it back in Scala

I have a List of case objects of which some values are NaNs and I have to replace them with 0.0. So far I tried this code: var systemInformation: List[SystemInformation] = ...
1
vote
1answer
135 views

Scala 2.10 reflection: constructor of case class inside a class

I've used the accepted answer of this question to build little helper class to construct case classes from arrays of values: construct case class from collection of parameters As mentioned in the ...
6
votes
3answers
231 views

scala case class private apply method( repl bug ?)

in Scala2.10.0 REPL Welcome to Scala version 2.10.0 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0_13). Type in expressions to have them evaluated. Type :help for more information. scala> case ...
1
vote
2answers
82 views

How to pattern match abstract parent classes in a inheritance tree

I am new to scala with a java background. Is there a way to pattern match super classes (or traits) in a class inheritance tree with leafs as case classes and nodes abstract classes or traits? As far ...
1
vote
3answers
104 views

construct case class from collection of parameters

Given: case class Thing(a:Int, b:String, c:Double) val v = Vector(1, "str", 7.3) I want something that will magically create: Thing(1, "str", 7.3) Does such a thing exist (for arbitrary size ...
0
votes
2answers
152 views

Getting partial constructors for case classes “for free”

Consider an abstract class defining two properties abstract class A { def a: Int def b: Int // real A has additional members } which is the base class for various case classes such as case ...
4
votes
1answer
168 views

case class from Map

I'm trying to implement (de)serialization from Scala case classes to Maps (field_name -> field_value). The problem is I don't know how to create a function, that would take a case class type and a ...
1
vote
4answers
152 views

Merge two case class of same type, except some fields

If you have a case class like: case class Foo(x: String, y: String, z: String) And you have two instances like: Foo("x1","y1","z1") Foo("x2","y2","z2") Is it possible to merge instance 1 in ...
2
votes
1answer
124 views

Playframework, scala case class and property not found

I've got very strange behaviour when I run playframework in scala. I used anorm as database access layer thus I've started doing some code and I saw very strange scala compiler behavoiur. This is ...
0
votes
1answer
67 views

followup about scala constructor oveloading

This is a followup question to Scala constructor overload? I'd like a case class constructor that operates on a restricted form of the input and so overrides, rather than overloads the constructor: ...
1
vote
2answers
372 views

How can I create an instance of a Case Class with constructor arguments with no Parameters in Scala?

I'm making a Scala app that sets by reflection field values. This works OK. However, in order to set field values I need a created instance. If I have a class with an empty constructor, I can do this ...
2
votes
1answer
220 views

Mapping Java beans and Scala case classes to MongoDB objects

I am currently struggling with this issue here.. In our system, we use Java beans and Scala case classes, and they often contains one another. So, i am looking for a good solution for how to map ...
1
vote
1answer
108 views

How to get fields with same name as class parameters in Scala?

Take a simple class like the following: class Person(name: String, age: Int) {} Now, when I instantiate this class, I typically want its users to be able to use name and age. Like: val ronald = ...
1
vote
3answers
212 views

Scala: referencing companion object from a child class

I'm thinking of a following Scala class layout. I have a basic trait that represents an Item - an interface of what ought to be an immutable object that we can query for name, weight and do some ...
1
vote
1answer
101 views

How do I write a scala extractor for a case class with default parameters?

I have the following case class with a default parameter and I'm wondering how I can write an unapply method so that I can just extract the first two parameters. I hope the code below is clear. case ...
2
votes
3answers
275 views

Generically rewriting Scala case classes

Is it possible to generically replace arguments in a case class? More specifically, say I wanted a substitute function that received a "find" case class and a "replace" case class (like the left and ...
5
votes
3answers
762 views

Scala - Enumeration vs. Case-Classes

I've created akka actor called LogActor. The LogActors's receive method handling messages from other actors and logging them to the specified log level. I can distinguish between the different levels ...
5
votes
4answers
169 views

How to implement instance sharing for case classes

Assuming defintion: case class IntegerWrapper(i : Int) and being in a situation that potentially large amounts of IntegerWrapper instances with i=[0..N> may be created what does one have to do ...
0
votes
1answer
92 views

Reflection code in Scala doesn't drill down into Vector

This part of my application parses to and from a JSON into my objects. I created a unit test that creates a 'PurchaseOrder', transforms it into JSON and transforms it back into the same type of ...
2
votes
2answers
309 views

Easily parse String of Key=Value pairs to Scala case class

Is there any way to easily parse a string of key value pairs into a scala case class? for example from the following string "consumer_key=1234ABC, consumer_secret=12345ABC" into case class Auth( ...
2
votes
2answers
165 views

Scala Using WeakReference in A Case Class

I want to write a case class in scala that holds a scala.ref.WeakReference to some other object. I wonder what the best practice it is for that to be done in scala. I had a few thoughts on that, and ...
8
votes
1answer
254 views

Curried case class constructor on companion

When defining a case class, the default companion object has nice curried method to get a curried version of the case class constructor: scala> case class Foo(a: String, b: Int) defined class Foo ...
2
votes
2answers
177 views

Recursive Types in Scala with a List

Similarly to mutually recursive types in scala I am trying to create a mutually recursive type in Scala. I am trying to make a graph defined with this type (which does compile) : case class ...
7
votes
1answer
181 views

Scala duck typing pattern matching

I have a case class like the following: // parent class sealed abstract class Exp() // the case classes I want to match have compatible constructors case class A (a : Exp, b : Exp) extends Exp case ...
6
votes
2answers
2k views

Scala case class inheritance

I have an application based on Squeryl. I define my models as case classes, mostly since I find convenient to have copy methods. I have two models that are strictly related. The fields are the same, ...
-2
votes
1answer
315 views

scala case class named parameters

Is there (or will in the nearest feature) in scala possible to create case class with named parameters? I mean to construct case class object using named parameters in constructor. My case classes ...
2
votes
2answers
134 views

Traversable recursive node structures

I am trying to implement recursive traversions over a node structure: sealed class Node(subnodes: Traversable[Node]) extends Traversable[Node] { def foreach[U](f: Node => U) { f(this) ...
3
votes
3answers
550 views

Rename and Override equals method in case class

I want to define a trait named Ext that renames the existing equals method to equalsByAttributes and defines a new equals method at the same time. The trait is used to extend case classes. My ...
4
votes
3answers
518 views

Modeling with Scala case class

I'm attempting to model responses from REST APIs as case classes which I can use pattern matching on. I thought it would be a good fit assuming inheritance, but I see that this is deprecated. I know ...
10
votes
1answer
593 views

What is *so* wrong with case class inheritance?

While looking for something else, quite out of mere coincidence I stumbled upon few comments about how diabolical case class inheritance is. There was this thing called ProductN , wretches and kings, ...
8
votes
3answers
301 views

How to use a case classes when hierarchy is needed?

I know that you're not allowed to inherit from case classes but how would you do when you really need to? We have two classes in a hierarchy, both contain many fields, and we need to be able to create ...
5
votes
1answer
576 views

Seemingly spurious “does not take arguments” error with case class constructor

I have a case class that has a few parameters for its constructor, and I define an accompanying class object that defines an alternative constructor that takes a different set of arguments, like so: ...

1 2 3