Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9274467
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T16:21:40+00:00 2026-06-18T16:21:40+00:00

given a class like class MyDate extends java.util.Date { //add some functionality } you

  • 0

given a class like

class MyDate extends java.util.Date {
   //add some functionality
}

you create your own Date Object which inherits all functionality.

But if you try to use this functionality like this

MyDate d = MyDate.parse('yyyy','2013')

you will run into the problem that the parse method will return a java.util.Date which can’t be casted to your MyDate.

You can write your own cast through the asType() functionality, but this will not help, because you would have to add it to the Date() class (I know that’s possible, but I would like to avoid it).

Is there another way to solve this Problem?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T16:21:41+00:00Added an answer on June 18, 2026 at 4:21 pm

    Groovy’s Date.parse method will return a Date object. If you want it to return your MyDate object, you have to write it (overriding, but still using the super):

    @groovy.transform.InheritConstructors class MyDate extends java.util.Date {
      static MyDate parse(String format, String date) {
        new MyDate( Date.parse(format, date).time )
      }
    
      String formated() {
        format 'dd/MM/yyyy'
      }
    }
    
    MyDate d = MyDate.parse('yyyy-MM-dd','2013-09-03')
    
    assert d.formated() == "03/09/2013"
    

    You will also need to inherit the constructors (through this groovy transform) or write your own constructor.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For a given class I would like to have tracing functionality i.e. I would
Given a simple Java class like this: class MyData { public int a; public
Given a class like this: class B class << self attr_accessor :var end end
The essence of the problem is, given a class hierarchy like this: class A
Given a class with a member template function like this one: template <typename t>
Given a simple C# class definition like: [System.Windows.Markup.ContentProperty(PropertyOne)] public class SimpleBase { public string
Given a class, I would like to limit the number of objects created from
Given an admin media class that sets up a rich text editor, like: class
I'd like to be able to determine what class will be called given an
Given i have a class like so in my Data Layer public class GenericRepository<TEntity>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.